首页 > 建站教程 > dart >  Dart编程实例 - 字符串 replaceAll() 方法正文

Dart编程实例 - 字符串 replaceAll() 方法

Dart编程实例 - 字符串 replaceAll() 方法

void main() {

   String str1 = "Hello World";

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

}