gpt4 book ai didi

javascript - 如何完成重复的正则表达式替换

转载 作者:行者123 更新时间:2023-12-03 07:40:03 24 4
gpt4 key购买 nike

我想一次性替换以下内容。

With regEx_
.Global = True
.MultiLine = True
.IgnoreCase = True
.Pattern = "xxxxxx(.*)[\r\n]+xxxxxx"
TextLine = regEx_.replace(TextLine, "xxxxxx$1,")
.Pattern = "xxxxxx(.*)[\r\n]+xxxxxx"
TextLine = regEx_.replace(TextLine, "xxxxxx$1,")
.Pattern = "xxxxxx(.*)[\r\n]+xxxxxx"
TextLine = regEx_.replace(TextLine, "xxxxxx$1,")
.Pattern = "xxxxxx(.*)[\r\n]+xxxxxx"
TextLine = regEx_.replace(TextLine, "xxxxxx$1,")
End With

Ides 是分隔线的

例如:

从此,

xxxxxx1
xxxxxx2
xxxxxx3
xxxxxx4

对此。

xxxxxx1,2,3,4

我想重复,直到找不到匹配项。

编辑

行在字符串中并不独占,而是像字符串一样的一部分

yzyzyz#
xxxxxx1
xxxxxx2
xxxxxx3
xxxxxx4
yzyzyz*
xxxxxx1
xxxxxx2

最佳答案

你可以使用类似全局标志的东西:

input.replace(/[\r\n]+xxxxxx/g, ',')
// output: xxxxxx1,2,3,4

使用 VBScript,它看起来像这样:

Dim TextLine, regEx_
TextLine = "xxxxxx1" & VbCrLf & _
"xxxxxx2" & VbCrLf & _
"xxxxxx3" & VbCrLf & _
"xxxxxx4"

Set regEx_ = new regexp
With regEx_
.Global = True
.MultiLine = True
.IgnoreCase = True
.Pattern = "[\r\n]+xxxxxx"
TextLine = regEx_.replace(TextLine, ",")
End With

关于javascript - 如何完成重复的正则表达式替换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35451820/

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