Dart String.replaceAll(Pattern from, String replace)
方法用給定的值替換與指定模式匹配的所有子字串。
語法
String replaceAll(Pattern from, String replace)
引數
from
- 要被替換的字串。replace
- 替換字串。返回值
範例
void main() {
String str1 = "Hello World";
print("New String: ${str1.replaceAll('World','ALL')}");
}
執行上面範例程式碼,得到以下結果 -
New String: Hello ALL