明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
12
返回列表 发新帖
楼主: 664571221

[提问] 各位大神看下如何过滤选择块名中含有 灯 这个字的块

[复制链接]
 楼主| 发表于 2023-5-8 15:11:12 | 显示全部楼层
xyp1964 发表于 2023-5-7 23:17
一共选择了个块名称含灯的块

派大上码..........
发表于 2023-5-8 19:52:28 | 显示全部楼层
664571221 发表于 2023-5-8 09:02
大神可以数出来了,是否可以吧文字插入cad呢

改了,再试试
发表于 2023-5-9 13:34:31 | 显示全部楼层
  1. (defun c:tt ()
  2.   "统计块名称含灯的块"
  3.   (if (setq ss (ssget "x" '((0 . "INSERT") (66 . 1))))
  4.     (progn
  5.       (setq lst(vl-remove-if-not  '(lambda (x) (setq a (mapcar 'last (xyp-Att2list x))) (vl-some '(lambda (x) (vl-string-search "灯" x)) a))(xyp-Ss2List ss)))
  6.       (princ (strcat "\n一共选择了< " (itoa (length lst)) " >个块名称含灯的块"))
  7.     )
  8.   )
  9.   (princ)
  10. )



 楼主| 发表于 2023-5-14 21:49:27 | 显示全部楼层
(defun c:tt(/ p s)
        (if (ssget ":S" '((0 . "insert")(2 . "$equip$*")))
                (progn
                        (vlax-for e (vla-get-activeselectionset (vla-get-ActiveDocument (vlax-get-acad-object)))
                                (if        (vla-Get-HasAttributes e)
                                        (foreach x
                                                (vlax-safearray->list (vlax-variant-value (vla-GetAttributes e)))
                                                (if (and (= "A" (vla-Get-TagString x))
                                                                        (wcmatch (vla-Get-TextString x)"*灯*")
                                                                )
                                                        (setq s (cons e s))
                                                )
                                        )
                                )
                        )
                        (if (and  s (setq s (mapcar '(lambda(x)(vlax-get x 'insertionpoint)) s))
                                                (setq p (getpoint"\n大力出奇迹..."))
                                        )
                                (progn
                                        (command "text" p 350 0 (strcat "选中了"(itoa (length s))"个含灯的块"))
                                        (foreach x s (command "line" "non" x "non" p ""))
                                )
                        )
                       
                )               
        )
)
 楼主| 发表于 2023-5-14 21:51:12 | 显示全部楼层
664571221 发表于 2023-5-14 21:49
(defun c:tt(/ p s)
        (if (ssget ":S" '((0 . "insert")(2 . "$equip$*")))
                (progn

楼上是波总的代码
发表于 2023-5-16 00:48:32 | 显示全部楼层
院长这个X用的好
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-16 18:25 , Processed in 0.161978 second(s), 19 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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