0
我一直在搜索Stackoverflow,但找不到可以幫助我的確切線程。使用RegEx找到一串麻煩的字符串使用正則表達式
我的問題是這個,我想能夠找到並取出任何8位數的字符串發生。
Dim SetOfMatches As MatchCollection
Dim MyRegex As New Regex("A^\d{8}$A")
Dim TestString As String = "testing 12345678 testing"
myMatches = myRegex.Matches(TestString)
For each Row as Match in myMatches
console.writeline(row.value)
Next
這不會產生任何命中。但我想找到字符串中間的8位數字。
我在RegEx中非常基本。
任何幫助將是偉大的!
是的,這樣解決了這個問題。我剛看到它。謝謝哥們! –