說我有這個名單(未知分隔符):RegEx - 我應該使用Capture還是Group?
ABC-12345, DEF-34567; WER-12312 \n ERT-23423
我知道正則表達式馬赫我需要的是:A-ZÆØÅ] {3} - \ d {5}。但是,如何使用.net匹配類的組或捕獲?
這是我第一次嘗試:
Public Function ParseSites(ByVal txt As String) As List(Of String)
Const SiteIdRegEx = "([A-ZÆØÅ]{3}-\d{5})"
Dim list As New List(Of String)
Dim result As Match = Regex.Match(txt, SiteIdRegEx)
For Each item As Capture In result.Captures
If (Not String.IsNullOrEmpty(item.Value)) Then
list.Add(item.Value)
End If
Next
Return list
End Function
我想要回我的比賽名單。有任何想法嗎?
Larsi
Ahhh ..有一個MatchES功能。謝謝 – Larsi 2010-11-04 11:09:49