Dim Valore As String
Dim strSplit() As String
Value = "6-03/12/2012-test" '<--------------
strSplit=Regex.Split("-",Value )
Msgbox(strSplit(0) & " " & strSplit(1) & " " & strSplit(2),"")
and this not?
B4X:
Dim Valore As String
Dim strSplit() As String
Value = "6|03/12/2012|test" '<--------------
strSplit=Regex.Split("|",Value )
Msgbox(strSplit(0) & " " & strSplit(1) & " " & strSplit(2),"")