StringArray = Split ( String AS String [ , Separators AS String , Escape AS String , IgnoreVoids AS Boolean ] )
Splits a string into substrings delimited by separators and escape characters.
By default, the comma character is the separator, and there are no escape characters.
![]() | If a string contains escape characters, then these escape characters must be duplicated. |
DIM Elt AS String[] DIM Sb AS String Elt = Split(" Gambas Almost Means BASIC !\n'Do you agree ?'", " \n", "'") FOR EACH Sb IN Elt PRINT "("; Sb; ") "; NEXT PRINT
() (Gambas) (Almost) (Means) (BASIC) () (!) (Do you agree ?)
Elt = Split(" Gambas Almost Means BASIC !\n'Do you agree ?'", " \n", "'", TRUE) FOR EACH Sb IN Elt PRINT "("; Sb; ") "; NEXT PRINT
(Gambas) (Almost) (Means) (BASIC) (!) (Do you agree ?)
Elt = Split("(Gambas) (Almost) (Means) (BASIC) (!) (Do you agree ?)", " ", "()") FOR EACH Sb IN Elt PRINT Sb; "."; NEXT PRINT
Gambas.Almost.Means.BASIC.!.Do you agree ?.