找回密码
 立即注册

QQ登录

只需一步,快速开始

扫一扫,访问微社区

查看: 112|回复: 0

[字符串] XD::STR:REPLACE

[复制链接]

已领礼包: 40个

财富等级: 招财进宝

发表于 2025-5-13 10:15:00 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

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

×
  1. ;;; ------------------------------------------------------------------------
  2. ;;; 函数名称 / Function Name: XD::STR:replace
  3. ;;;
  4. ;;; 【功能说明 / Description】
  5. ;;;     将输入字符串中所有指定的子字符串替换为目标子字符串。
  6. ;;;     Replaces all occurrences of a specified substring with the target substring.
  7. ;;;
  8. ;;; 【参数说明 / Parameters】
  9. ;;;     string - 原始字符串 / The original string
  10. ;;;     old-substr - 需要被替换的子字符串 / The substring to be replaced
  11. ;;;     new-substr - 替换成的目标子字符串 / The substring to replace with
  12. ;;;
  13. ;;; 【返回值 / Return Value】
  14. ;;;     返回一个新字符串,替换完成后的结果 / The new string after replacement
  15. ;;;
  16. ;;; 【依赖函数 / Dependencies】
  17. ;;;     无 / None
  18. ;;;
  19. ;;; 【使用示例 / Example Usage】
  20. ;;;     (XD::STR:replace "C:/A/B" "/" "\\")
  21. ;;;     => "C:\\A\\B"
  22. ;;;
  23. ;;; 【备注 / Notes】
  24. ;;;     - 此函数替换所有匹配的子字符串 / This function replaces all occurrences of the substring.
  25. ;;;     - 在使用时,请确保输入的字符串参数和目标子字符串符合预期。
  26. ;;; ------------------------------------------------------------------------

  27. (defun XD::STR:replace (old-substr new-substr string / len-old pos result)
  28.   ;; 【功能】替换字符串中所有匹配的子串
  29.   ;; 【参数】string - 原始字符串, old-substr - 被替换子串, new-substr - 替换子串
  30.   ;; 【返回】替换后的新字符串
  31.   
  32.   (setq len-old (strlen old-substr))
  33.   (setq result "")
  34.   
  35.   (while (setq pos (vl-string-search old-substr string))
  36.     (setq result (strcat result (substr string 1 pos) new-substr))
  37.     (setq string (substr string (+ pos len-old 1)))
  38.   )
  39.   
  40.   (strcat result string)
  41. )

论坛插件加载方法
发帖求助前要善用【论坛搜索】功能,那里可能会有你要找的答案;
如果你在论坛求助问题,并且已经从坛友或者管理的回复中解决了问题,请把帖子标题加上【已解决】;
如何回报帮助你解决问题的坛友,一个好办法就是给对方加【D豆】,加分不会扣除自己的积分,做一个热心并受欢迎的人!
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|申请友链|Archiver|手机版|小黑屋|辽公网安备|晓东CAD家园 ( 辽ICP备15016793号 )

GMT+8, 2025-7-18 22:38 , Processed in 0.349494 second(s), 27 queries , Gzip On.

Powered by Discuz! X3.5

© 2001-2025 Discuz! Team.

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