Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to split string by multiple delimiters in flutter?

This looks like a simple question, but I couldn't find any result after google. I have string tel:090-1234-9876 03-9876-4321 +81-90-1987-3254, I want to split it to tel:, 090-1234-9876, 03-9876-4321 and +81-90-1987-3254, what can I do?

like image 256
mikezang Avatar asked Jun 28 '26 12:06

mikezang


1 Answers

Simply you can use the split() method of the Dart as follows.

final str = "tel:090-1234-9876 03-9876-4321 +81-90-1987-3254";
print(str.split(" "));

If you want to use any other pattern, try splitting using regex.

final str = "tel: 090-1234-9876 03-9876-4321 +81-90-1987-3254";
print(str.split(RegExp(r'\s')));
// outputs: [tel:, 090-1234-9876, 03-9876-4321, +81-90-1987-3254]

Additionally, if you want to split by multiple delimiters e.g by +, -, and \s then

final str = "tel: 090-1234-9876 03-9876-4321 +81-90-1987-3254";
print(str.split(RegExp(r'[+-\s]')));
// outputs: [tel:, 090, 1234, 9876, 03, 9876, 4321, , 81, 90, 1987, 3254]

Try Dart Pad

like image 120
prahack Avatar answered Jun 30 '26 14:06

prahack



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!