![]() |
VOOZH | about |
In Dart splitting of a string can be done with the help split string function in the dart. It is a built-in function use to split the string into substring across a common character.
Syntax:
string_name.split(pattern)This function splits the string into substrings across the given pattern and then stores them in a list.
Example:
Output:
[Geeks, For, Geeks, !!]Example:
Output:
[G, e, e, k, s, F, o, r, G, e, e, k, s]
Apart from the above pattern, the pattern can also be a regex. It is useful when we have to split across a group of characters like numbers, special characters, etc.
Example:
Output:
[Geeks, For, Geeks, is, the, best, computer, science, website.]