明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1414|回复: 12

[已解答] 如何将输入50*3这类乘法数据转换为50+50+50这类的加法?

[复制链接]
发表于 2015-2-16 08:01:34 | 显示全部楼层 |阅读模式
想了好长时间一直都没明天该具体如何转换,请高手指点指点。
"觉得好,就打赏"
还没有人打赏,支持一下
发表于 2024-8-19 00:41:55 | 显示全部楼层
  1. (defun abc(_str / LM:lst->str LM:str->lst _alst  _xlst )
  2. (defun LM:lst->str ( lst del )
  3.     (if (cdr lst)
  4.         (strcat (car lst) del (LM:lst->str (cdr lst) del))
  5.         (car lst)
  6.     )
  7. )
  8. (defun LM:str->lst ( str del / pos )
  9.     (if (setq pos (vl-string-search del str))
  10.         (cons (substr str 1 pos) (LM:str->lst (substr str (+ pos 1 (strlen del))) del))
  11.         (list str)
  12.     )
  13. )
  14. (LM:lst->str
  15.   (apply 'append
  16.   (mapcar '(lambda(x)
  17.     (setq _alst nil)
  18.     (cond
  19.       ((wcmatch x "*`**")  
  20.         (setq _xlst (LM:str->lst x "*"))        
  21.         ((lambda(y z)(repeat (atoi z) (setq _alst (cons y _alst)))_alst)(car _xlst)(cadr _xlst))      
  22.       )
  23.       (t (list x))
  24.     )
  25.   )(LM:str->lst _str " "))) " ")
  26. )

命令: (abc "50 100*3 200*2 100*1")
"50 100 100 100 200 200 100"

评分

参与人数 1明经币 +1 金钱 +20 收起 理由
大角牛 + 1 + 20 很给力!

查看全部评分

回复 支持 1 反对 0

使用道具 举报

发表于 2024-8-18 22:27:37 | 显示全部楼层
本帖最后由 xyp1964 于 2024-8-19 11:19 编辑
大角牛 发表于 2024-8-17 15:51
我要输入一组数据,怎么转换呢?
如输入50 100*2 200*3后
转换为 50 100 100 200 200 200

  1. ;; (abc "50 100*2 200*3") → (50 100 100 200 200 200)
  2. (defun abc (tx)
  3.   (defun aa (tx / nn t1 t2 lst)
  4.     (setq nn (vl-string-search "*" tx)
  5.           t1 (substr tx 1 nn)
  6.           t2 (substr tx (+ nn 2))
  7.     )
  8.     (if  (and (setq a (atoi t1)) (setq n (atoi t2)))
  9.       (repeat n (setq lst (cons a lst)))
  10.     )
  11.     lst
  12.   )
  13.   (apply 'append(mapcar '(lambda (x)(i(vl-string-search "*" x)(aa x)(list (atoi x))))(xyp-StrSpr tx " ")))
  14. )

  1. (defun xyp-StrSpr (str sub / lst n)
  2.   "以指定分解符分解字符串"
  3.   (if (/= sub "")
  4.     (progn
  5.       (while (setq n (vl-string-search sub str))
  6.         (setq lst (cons (substr str 1 n) lst)
  7.               str (substr str (+ n (strlen sub) 1))
  8.         )
  9.       )
  10.       (vl-remove "" (reverse (cons str lst)))
  11.     )
  12.   )
  13. )

发表于 2015-2-16 08:43:26 | 显示全部楼层
分解出两个数据,一个用于重复数字,一个用于循环次数控制,反复strcat。。。
发表于 2015-2-16 09:14:21 | 显示全部楼层
  1. ;; (abc "50*3")
  2. (defun abc (tx / nn t1 t2 t3)
  3.   (setq nn (vl-string-search "*" tx)
  4.         t1 (substr tx 1 nn)
  5.         t2 (substr tx (+ nn 2))
  6.   )
  7.   (if (and (distof t1) (setq n (atoi t2)))
  8.     (progn
  9.       (setq t3 "")
  10.       (repeat (1- n)(setq t3 (strcat t3 t1 "+")))
  11.       (strcat t3 t1)
  12.     )
  13.   )
  14. )
发表于 2015-2-16 09:22:00 | 显示全部楼层
  1. ;; (abc "50*3")→"50+50+50"
  2. (defun abc (tx / nn t1 t2 t3)
  3.   (if (and (setq nn (vl-string-search "*" tx))
  4.            (distof (setq t1 (substr tx 1 nn)))
  5.            (setq n (atoi (setq t2 (substr tx (+ nn 2)))))
  6.       )
  7.     (progn
  8.       (setq t3 "")
  9.       (repeat (1- n)
  10.         (setq t3 (strcat t3 t1 "+"))
  11.       )
  12.       (strcat t3 t1)
  13.     )
  14.   )
  15. )
 楼主| 发表于 2015-2-17 07:36:20 | 显示全部楼层
谢谢院长和vectra。等我把理论吃透了,加到我现在工作的插件里面。
 楼主| 发表于 2015-2-19 08:25:36 | 显示全部楼层
想把院长的程序添加到下面这段程序里面,搞了2天没搞定,郁闷。
(defun auto_detext()
        (setq auto_textlen (strlen auto_text))
        (setq text_t "")
        (setq auto_ss nil)
        (while (> auto_textlen 0)
          (setq txet_c (substr auto_text 1 1))
                  (if (/= txet_c "+")
                                (setq text_t (strcat text_t txet_c))
                                (if (/= text_t"")
                                (progn
                                        (setq auto_ss (cons text_t auto_ss))
                                        (setq text_t ""))))
                  (setq auto_text (substr auto_text 2 (- (strlen auto_text) 1)))
                  (if (and (< auto_textlen 2) (/= text_t""))
                        (progn
                           (setq auto_ss (cons text_t auto_ss))
                           (setq text_t "")))
        (setq auto_textlen (1- auto_textlen)))
        (setq auto_ss (reverse auto_ss))
)
 楼主| 发表于 2015-2-21 09:05:11 | 显示全部楼层
添加院长的程序后运行,每次会少一个,如果*3,会只画出2个,*5,会只画出4个。郁闷。

点评

估计不会用吧?! 实测:(abc "50*5") → "50+50+50+50+50"  发表于 2015-2-21 14:11
 楼主| 发表于 2015-2-21 14:24:16 | 显示全部楼层
我也不知道是怎么回事,而且我把代码加进去后,直接输入不带乘号的数字,提示错误,无法工作。现在晕死了。
图1和图2的上传顺序反了。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?注册

x
发表于 2024-8-17 15:51:00 | 显示全部楼层

我要输入一组数据,怎么转换呢?
如输入50 100*2 200*3后
转换为 50 100 100 200 200 200
您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-25 09:42 , Processed in 0.217289 second(s), 31 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表