明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1916|回复: 7

如何去除Mtext的textstring里面的格式字符

[复制链接]
发表于 2011-3-28 23:25:29 | 显示全部楼层 |阅读模式
例如:dim mtstring as string
dim mt as acadmtext
mtstring=mt.textstring
这样得到的字符串前面有一堆格式字符,如何用简单的方法去掉只留下有用的内容?求教高手,本人新人啊呵呵。
发表于 2011-3-29 08:01:59 | 显示全部楼层
没有简单的办法,自己编个function用不常用字符替代格式字符
发表于 2011-4-2 05:59:59 | 显示全部楼层
正则表达式替换吧。
发表于 2011-5-10 18:05:48 | 显示全部楼层
炸开就可以了
发表于 2011-9-20 15:36:13 | 显示全部楼层
'以下此过程非我所写,网上收集,感谢网友。
Private Function GetMTextUnformatString(MTextString As String) As String
    Dim s As String
    Dim RE As Object
    ' 获取Regular Expressions组件
    Set RE = ThisDrawing.Application.GetInterfaceObject("Vbscript.RegExp")
    ' 忽略大小写
    RE.IgnoreCase = True
    ' 搜索整个字符串
    RE.Global = True
    s = MTextString
   
    '替换\\字符
    RE.Pattern = "[url=]\\\\[/url]"
    s = RE.Replace(s, Chr(1))
    '替换\{字符
    RE.Pattern = "\\{"
    s = RE.Replace(s, Chr(2))
    '替换\}字符
    RE.Pattern = "\\}"
    s = RE.Replace(s, Chr(3))
   
    '删除段落缩进格式
    RE.Pattern = "\\pi(.[^;]*);"
    s = RE.Replace(s, "")
    '删除制表符格式
    RE.Pattern = "\\pt(.[^;]*);"
    s = RE.Replace(s, "")
    '删除堆迭格式
    RE.Pattern = "[url=file://\\S(.[^;]*)(\^|#|\\]\\S(.[^;]*)(\^|#|\\[/url])(.[^;]*);"
    s = RE.Replace(s, "$1$3")
    '删除字体、颜色、字高、字距、倾斜、字宽、对齐格式
    RE.Pattern = "(\\F|\\C|\\H|\\T|\\Q|\\W|\\A)(.[^;]*);"
    s = RE.Replace(s, "")
    '删除下划线、删除线格式
    RE.Pattern = "(\\L|\\O|\\l|\\o)"
    s = RE.Replace(s, "")
    '删除不间断空格格式
    RE.Pattern = "\\~"
    s = RE.Replace(s, " ")
    '删除换行符格式
    RE.Pattern = "\\P"
    s = RE.Replace(s, "")
    '删除换行符格式(针对Shift+Enter格式)
    RE.Pattern = vbLf
    s = RE.Replace(s, "")
    '删除{}
    RE.Pattern = "({|})"
    s = RE.Replace(s, "")
   
    '替换回\\,\{,\}字符
    RE.Pattern = "\x01"
    s = RE.Replace(s, "\")
    RE.Pattern = "\x02"
    s = RE.Replace(s, "{")
    RE.Pattern = "\x03"
    s = RE.Replace(s, "}")
   
    Set RE = Nothing
   
    GetMTextUnformatString = s
End Function
发表于 2012-2-2 17:51:15 | 显示全部楼层
请问在LISP中如何调用这些代码?
{\Fisocp,gbcbig|c134;\C1;更改砂号},这里面只有更改砂号是有用字符,如何去掉这些MTEXT中的格式字符?
发表于 2012-6-3 17:03:33 | 显示全部楼层
革天明 发表于 2012-2-2 17:51
请问在LISP中如何调用这些代码?
{\Fisocp,gbcbig|c134;\C1;更改砂号},这里面只有更改砂号是有用字符,如 ...

{\Fisocp,gbcbig|c134;\C1;
是什么意思
发表于 2012-6-4 09:39:34 | 显示全部楼层
\F指的是字体,这里是Fisocp,gbcbig,C134是颜色,对应256种颜色中的第134个颜色,C1是红色,小写c应该指的是RGB颜色,我说的比较乱,具体请见帮助里面的“在替换文字编辑器中设置多行文字的格式”,但帮助也不全,需要自己再摸索一下
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

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

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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