明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1200|回复: 4

SSGET字符串转义[支持中文及2021]

[复制链接]
发表于 2021-12-20 11:35:26 | 显示全部楼层 |阅读模式
本帖最后由 CAD新军 于 2021-12-20 12:01 编辑
  1. ;;脱编码
  2. (defun lj:escapewildcards ( str / byte)
  3.         (if (and (< (getvar "LISPSYS") 1) (> (ascii (substr str 1 1)) 127))(setq byte 2)(setq byte 1))
  4.   (if (wcmatch str "*[-#@.*?~`[`,]*,*`]*")
  5.     (if (wcmatch str "[-#@.*?~`[`,]*,`]*")
  6.       (strcat "`" (substr str 1 1) (lj:escapewildcards (substr str 2)))
  7.       (strcat     (substr str 1 byte) (lj:escapewildcards (substr str (1+ byte))))
  8.     )
  9.     str
  10.   )
  11. )
改编自Lee Mac的,但部分情况中文会出问题,比如“计算表8.1”不增加中文检测时,就会在“表”字打断的时候匹配上"?",然后中间加了一个转义符。cad2021后版本lispsys设置成1时,字符串是utf的,也不会有问题。具体应用可以参考我的一个脚本:
http://bbs.mjtd.com/thread-181402-1-1.html
当块名是“计算表8.1”时会出现问题(没办法选择),把原来的LM:escapewildcards替换就能正常使用。
 楼主| 发表于 2021-12-20 11:46:45 | 显示全部楼层
  1. (defun LM:escapewildcards ( str )
  2.   (if (wcmatch str "*[-#@.*?~`[`,]*,*`]*")
  3.     (if (wcmatch str "[-#@.*?~`[`,]*,`]*")
  4.       (strcat "`" (substr str 1 1) (LM:escapewildcards (substr str 2)))
  5.       (strcat     (substr str 1 1) (LM:escapewildcards (substr str 2)))
  6.     )
  7.     str
  8.   )
  9. )

LeeMac原来的是这样的。

_$ (LJ:ESCAPEWILDCARDS "计算表8.1")
"计算表8`.1"
_$ (LM:ESCAPEWILDCARDS "计算表8.1")
"计算盽?`.1"
_$
发表于 2021-12-21 10:36:17 | 显示全部楼层
这样可以搞中文啦!!
发表于 2021-12-25 19:12:50 | 显示全部楼层
本帖最后由 1028695446 于 2021-12-25 19:15 编辑

不建议用这个,因为对中文字符处理不友好,建议用下面的这个函数(收集自明经论坛)

本帖子中包含更多资源

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

x
发表于 2022-3-30 14:27:27 | 显示全部楼层
厉害,学习了
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

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

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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