明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1695|回复: 0

[转帖]如何使用?

[复制链接]
发表于 2004-2-20 23:28:00 | 显示全部楼层 |阅读模式
有位老鸟帮我做了一个程序: 下面的程序已测试通过,供参考: (defun c:dxcd(/ )
(setq ss(ssget "x" '((0 . "MTEXT"))))
(setq sn(sslength ss))
(setq dxtab nil i 0)

(while(< i sn)
(setq si(ssname ss i)
str(cdr(assoc 1 (entget si)))
)
(setq pos nil)
(if(< (strlen str) 15)
(setq pos(vl-string-position (ascii "/") str))
)
(if pos
(progn
(setq xx(substr str 1 pos) cd(substr str (+ pos 2)) cd(atof cd))
(setq dxlst(assoc xx dxtab))
(if dxlst
(progn
(setq cd(+ (cdr dxlst) cd))
(subst (cons xx cd) dxlst dxtab)
)
(setq dxtab(append dxtab (list(cons xx cd))))
)
)
)
(setq i(1+ i))
)
(princ "\n统计结果")
(princ "\n-----------------------")
(princ "\n导线型号 导线长度")
(princ "\n-----------------------")

(setq i 0)
(while(< i (length dxtab))
(setq dxlst(nth i dxtab))
(princ (strcat "\n" (car dxlst) " " (rtos (cdr dxlst) 2 2)))
(setq i(1+ i))
)
(princ "\n-----------------------")
(princ)
)

下面是运行结果:
Command: dxcd 统计结果
-----------------------
导线型号 导线长度
-----------------------
LGJ-95 690.5
BLV-35 2873
BLV-50 1482.5
BLV-70 252
LGJ-70 125
LGJ-120 92
-----------------------
但我不知怎么用,望能帮忙

本帖子中包含更多资源

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

x
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-26 13:50 , Processed in 0.167835 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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