gpt4 book ai didi

regex - vba 正则表达式 : dot matching newline

转载 作者:行者123 更新时间:2023-12-04 14:32:30 25 4
gpt4 key购买 nike

我想匹配(在这个片段中)所有内容,但不包括我认为的换行符。会做。有人可以阐明我所缺少的东西吗?

Public Sub regexp()

Dim oRegExp As regexp
Dim oMatches As MatchCollection
Dim oMatch As Match
Dim sString As String

sString = _
"one" & vbNewLine & _
"two" & vbNewLine

Set oRegExp = New regexp
With oRegExp
.Global = True
.Pattern = ".+"
Set oMatches = .Execute(sString)
For Each oMatch In oMatches
Debug.Print "*" & oMatch.Value & "*"
Next oMatch
End With

End Sub

输出是
*one
*
*two
*

预期输出
*one*
*two*

如何避免输出中的换行符?谢谢。

最佳答案

如果您使用 [^\n]代替 . ,它将匹配除换行符之外的任何字符。

关于regex - vba 正则表达式 : dot matching newline,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10297365/

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