戏男 发表于 2023-6-5 19:34:20

liuhe 发表于 2023-6-5 17:10
应该问题不大了

错误: 读入的 (八进制) 字符不正确: 0加载错误{:1_1:}

liuhe 发表于 2023-6-6 08:21:07

戏男 发表于 2023-6-5 19:34
错误: 读入的 (八进制) 字符不正确: 0加载错误

》。。。。我测试了没问题,那就你的问题了:L

lijiao 发表于 2023-6-6 08:41:13

(defun remove0 (ostr / )
(if (and (> (strlen ostr) 0)
          (= (substr ostr 1 1) "0")
          )
    (remove0 (substr ostr 2))
    ostr)
)

ZZXXQQ 发表于 2023-6-6 13:18:48

(defun c:tt ()
(if (setq ss (ssget '((0 . "TEXT"))))
(repeat (setq i (sslength ss))
   (setq ent (entget(ssname ss (setq i (1- i)))))
   (setq txt (cdr(assoc 1 ent)))
   (setq j 1)
   (while (= (substr txt j 1) "0") (setq j (1+ j)))
   (entmod (subst (cons 1 (substr txt j)) (assoc 1 ent) ent))
)
)
(princ)
)

KO你 发表于 2023-6-12 01:16:45

论坛里有前后缀增加与删除的,前缀删除0就行了

戏男 发表于 2023-6-12 08:11:30

KO你 发表于 2023-6-12 01:16
论坛里有前后缀增加与删除的,前缀删除0就行了

能查得到链接吗?{:1_1:}
页: 1 [2]
查看完整版本: 消除前面的0