找回密码
 立即注册

QQ登录

只需一步,快速开始

扫一扫,访问微社区

查看: 996|回复: 0

[字符串] (XD::String:InsertMultiChar)字符串每个字中间连续插入多个字符

[复制链接]

已领礼包: 51个

财富等级: 招财进宝

发表于 2018-9-6 01:10:23 | 显示全部楼层 |阅读模式
函数发布
函数名称: XD::String:InsertMultiChar
调用格式: (XD::String:InsertMultiChar str ch num mode)
参数说明: str ----------- 字符串
ch ----------- 待插入的字符
num --------- 数量
mode ------- 0:所有字符分解单个
1:分解成汉字和非汉字两部分
2:汉字分解单个,非汉字不分解
返回值: 字符串
函数简介: 字符串每个字中间连续插入多个字符
函数来源: 原创
函数作者: Lispboy
适用版本: XDRX API 
最后更新时间: 2018-09-06
备注: -
演示图片: -

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

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

×
  1. (defun XD::String:InsertMultiChar (str ch num mode / txts sp x txt)
  2.     (setq sp "")
  3.     (repeat num (setq sp (strcat ch sp)))
  4.     (setq txts (xdrx_string_split str "\r\n")
  5.           txts (xd::list:flat
  6.                  (mapcar '(lambda (x) (xdrx_string_split x "\r")) txts)
  7.                )
  8.     )
  9.     (xdrx_string_join
  10.       (mapcar '(lambda (x)
  11.                  (setq txt (xdrx_string_regexpr (strcat "[ | |" ch "]+") x "")
  12.                        txt (xd::string:getwords txt mode)
  13.                  )
  14.                  (xdrx_string_join txt sp)
  15.                )
  16.               txts
  17.       )
  18.       "\r\n"
  19.     )
  20.   )


命令: (XD::String:InsertMultiChar "晓东CAD" " " 2 0)
"晓  东  C  A  D"

命令: (XD::String:InsertMultiChar "晓东CAD" "-" 2 1)
"晓东--CAD"

命令: (XD::String:InsertMultiChar "晓东CAD" " " 2 2)
"晓  东  CAD"

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

本版积分规则

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

GMT+8, 2024-11-22 01:35 , Processed in 0.231769 second(s), 31 queries , Gzip On.

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

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