VOOZH about

URL: https://www.geeksforgeeks.org/dart/dart-splitting-of-string/

⇱ Dart - Splitting of String - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Dart - Splitting of String

Last Updated : 7 Apr, 2025

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.

👁 split


Splitting a string across space

Example:

Output:

[Geeks, For, Geeks, !!]


Splitting each character of the string

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.


Splitting a string across any number present in it. (Using regex)

Example:

Output:

[Geeks, For, Geeks, is, the, best, computer, science, website.]
Comment
Article Tags:
Article Tags:

Explore