Hi, How can I split the following string
in order to get only
?
I'm trying with
but it doesn't work..
any idea? thanks
B4X:
-CA100-ISTITUTO PERTINI VIA CARPACCIO N° 18 A - N° 1 CHIAVE MECCANICA
B4X:
-CA100-
I'm trying with
B4X:
Dim strBeforeSplit As String
strBeforeSplit="-CA100-ISTITUTO PERTINI VIA CARPACCIO N° 18 A - N° 1 CHIAVE MECCANICA"
Dim strSplit() As String
strSplit=Regex.Split("-",strBeforeSplit)
Msgbox(strSplit(0)
but it doesn't work..
any idea? thanks