I'm trying to split a string with "|" as separator, but instead of it it's returning a vector with all letters of string. What I need is the words! what is wrong?
sample code....
Sample string: "Joel|Maria|Eduardo"
Thanks!
sample code....
B4X:
dim Lista() as String
result = Response.GetString("UTF8")
Lista = Regex.Split("|", result)
Thanks!