Hi There
I believe that regex.split has an issue
try this
I believe that regex.split has an issue
try this
B4X:
[INDENT]Dim ScannedText As String = "ABC|DEF|GHI"[/INDENT]
'Doesn't work
Dim ScanComponents() As String = Regex.Split("|", ScannedText )
ScannedText = ScannedText.Replace("|",";")
'work's
Dim ScanComponents() As String = Regex.Split(";", ScannedText )