lisp替换字符串函数

  • A+
所属分类:CAD二次开发

AutoLisp Vlisp 函数: (vl-string-subst new-str pattern string [start-pos])

功能

      在字符串中进行字符串替换。

使用说明、

1)参数 new-str 为字符串,用它来替换 pattern。

2)参数 pattern 为字符串,包含要被替换的字符串。

3)参数 string 为字符串,在其中查找 pattern。

4)参数 start-pos 为整数型,标志开始搜索的位置。缺省值为 0。

5)搜索是区分大小写的。

6)使用 vl-string-subst 仅替换字符串中第一次出现的子串。

返回值:被替换后 string 的值。

举例:

用 “www” 替换“qin”

(vl-string-subst "www" "qin" "qin huojibk")

返回:"www huojibk"

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: