0
我只是想獲得與正則表達式,但與match.Value或團體,它總是返回「」努力相匹配的字符串的一部分。這讓我瘋狂。 編輯:
這工作:
Private Function NormalizeValue(ByVal fieldValue As String) As String
Dim result As String = ""
Dim pattern As String = "[a-zA-Zñ'-]*"
Dim matches As Match
matches = Regex.Match(fieldValue, pattern)
While (matches.Success = True)
result = result & matches.Value
matches = matches.NextMatch()
End While
Return result
End Function
你的代碼截圖= not cool;粘貼爲文本並使用代碼格式化程序。 – 2015-01-20 23:09:07