Hi,
I ask for help in solving a problem using the regex feature and I can't figure out where I'm wrong !?
with this code I get an incorrect result, because almost all the characters are deleted:
input data: ABCDEF01GHIJKL
Result: 01G
can anyone help me figure out where the error is?
Thanks in advance
I ask for help in solving a problem using the regex feature and I can't figure out where I'm wrong !?
with this code I get an incorrect result, because almost all the characters are deleted:
Regex:
Dim Matcher1 As Matcher = Regex.Matcher("\d+[A-Z0-9]", aReader)
Dim aNewData As String
Do While Matcher1.Find
aNewData = aNewData & Matcher1.Match
Loop
input data: ABCDEF01GHIJKL
Result: 01G
can anyone help me figure out where the error is?
Thanks in advance