源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

vbs字符串分割函数

  • 时间:2022-10-20 23:08 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:vbs字符串分割函数
[u]复制代码[/u] 代码如下:
Function CutAndJoin(sSource, iLong, sJoiner) Dim I, N N = Len(sSource) / iLong If(N <> Fix(N))Then N = Fix(N) + 1 For I = 0 To N - 1 CutAndJoin = CutAndJoin & Mid(sSource, I * iLong + 1, iLong) & sJoiner Next If(N > 0)Then CutAndJoin = Left(CutAndJoin, Len(CutAndJoin) - Len(sJoiner)) End Function WScript.Echo(CutAndJoin("hello world!", 1, "$"))
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部