明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1272|回复: 0

[【PyCAD】] PYCAD复制excel内容进行查找文本

[复制链接]
发表于 2022-4-12 09:26:33 | 显示全部楼层 |阅读模式
本帖最后由 枫叶棋语 于 2022-5-10 16:59 编辑

# -*- coding: utf-8 -*

import re
import clr
from pycad.runtime import *
from pycad.system import *
clr.AddReference('System.Windows.Forms')
from System.Windows.Forms import Clipboard


fd_str = ""
@command()
def fd(doc):
    with dbtrans(doc) as tr:
        global fd_str
        res =edx.getstr("请输入查找文字 ")
        if not res.ok: return
        str0=res.value
        if str0 == "":
            str0=fd_str
        pa= "^\s*|\s*$"
        str0=re.sub(pa, "", str0, count=0, flags=0)
        print(str0)
        fd_str = str0
        ss_list=[]
        ss = edx.ssget_x((0, '*text'))
        if ss.ok():
            for ssi in ss:
                txt=tr.getobject(ssi.ObjectId)
                with upopen(txt):
                    if isinstance(txt, acdb.DBText):
                        str1 = txt.TextString
                    elif isinstance(txt, acdb.MText):
                        str1 = txt.Text
                if not re.match(str0 , str1, re.I) is None:
                   ss_list.append(ssi.ObjectId)
        edx.sssetfirst(tuple(ss_list))
        
@command()
def ff(doc):
    with dbtrans(doc) as tr:
        str0 = Clipboard.GetText()
        if not str0:
            print("剪贴板为空")
        else:
            Clipboard.Clear()
            ss = edx.ssget_x((0, '*text'))
            pa= "^\s*|\s*$"
            str0=re.sub(pa, "", str0, count=0, flags=0)
            print(str0)
            Clipboard.SetText(str0)
            ss_list=[]
            if ss.ok():
                for ssi in ss:
                    txt=tr.getobject(ssi.ObjectId)
                    with upopen(txt):
                        if isinstance(txt, acdb.DBText):
                            str1 = txt.TextString
                        elif isinstance(txt, acdb.MText):
                            str1 = txt.Text
                    if not re.match(str0 , str1,re.IGNORECASE) is None:
                        ss_list.append(ssi.ObjectId)
            edx.sssetfirst(tuple(ss_list))




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

本版积分规则

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

GMT+8, 2024-11-25 04:40 , Processed in 0.150037 second(s), 22 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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