String replaceAll() Method



Replaces all substrings that match the specified pattern with a given value.

Syntax

 String replaceAll(Pattern from, String replace) 

Parameters

  • From − the string to be replaced.

  • Replace − the substitution string.

Return Type

Returns a string.

Example

 void main() { String str1 = "Hello World"; print("New String: ${str1.replaceAll('World','ALL')}"); } 

It will produce the following output −.

 New String: Hello ALL 
dart_programming_string.htm
Advertisements