gpt4 book ai didi

asp-classic - 经典 ASP : split by two patterns

转载 作者:行者123 更新时间:2023-12-04 02:37:19 25 4
gpt4 key购买 nike

我正在尝试通过两个参数/模式拆分经典 ASP 中的字符串

举个例子,我正在尝试做类似的事情

str = "1,2,3,4|5|6.7.8"
arr = Split(str, "," , "|" )
'arr = [ 1 , 2 , 3 , 4 , 5 , 6.7.8 ]

除了编写自己的拆分函数之外,还有其他方法吗? (遍历整个字符串,与模式进行比较...)

最佳答案

您可以先替换其中一个值,然后再拆分它。例如,用管道替换逗号,然后在管道上拆分:

arr = Split(Replace(str, ", ", "|"), "|" ) 

关于asp-classic - 经典 ASP : split by two patterns,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11566144/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com