Italian java.util.regex.PatternSyntaxException: Incorrectly nested parentheses in regexp pattern near index

Angelo Messina

Active Member
Licensed User
Longtime User
B4X:
Sub p  solved
    Dim Valore As String = "DA203(DA302|>|0|)"
    Dim campi() As String
    campi=Regex.Split("[(]",Valore)
    For j=0 To campi.Length
        Log(campi(j) )
    Next
End Sub
 
Last edited:

Sagenut

Expert
Licensed User
Longtime User
Prova con
B4X:
campi=Regex.Split("\(",Valore)
 
Last edited:
Top