Hi,
I am facing a strange issue trying to split a string separated by ".".
in both cases TempList is empty while it works (for both cases) just fine with any other separator (",",";",etc..).
Any reason why "." is not working?
thanks
I am facing a strange issue trying to split a string separated by ".".
B4X:
dim Text1 as string, TempList as List
sf As JStringFunctions
Text1 = "info1.info2"
TempList = Regex.Split(".",Text1)
'or'
TempList = sf.Split(Text1,".")
in both cases TempList is empty while it works (for both cases) just fine with any other separator (",",";",etc..).
Any reason why "." is not working?
thanks