I am using a pipe | as the delimiter in regex split. But its not working.
any ideas?
any ideas?
Dim str As String = "abc|def|efg"
Dim x() As String = Regex.Split("\|", str)
For Each s In x
Log(s)
Next
Dim str As String = "abc|def|efg"
Dim x() As String = Regex.Split("|", str)
For Each s In x
Log(s)
Next
B4X:Dim str As String = "abc|def|efg" Dim x() As String = Regex.Split("\|", str) For Each s In x Log(s) Next
The explanation: https://streamsets.com/documentatio...ollector/UserGuide/Apx-RegEx/RegEx-Title.html
Dim ResponseArray() As String = Regex.Split("[|]", ResponseString)
Sub Activity_Click
Dim str As String = "abc|def|efg"
Dim x() As String = Regex.Split("\|", str)
For Each s In x
Log(s)
Next
End Sub