當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Dart String.replaceAll用法及代碼示例


dart:core 庫中String.replaceAll 方法的用法介紹如下。

用法:

String replaceAll(
   Pattern from,    
   String replace   
)

將與 from 匹配的所有子字符串替換為 replace

創建一個新字符串,其中匹配 from 的非重疊子字符串(由 from.allMatches(thisString) 迭代的子字符串)被替換為文字字符串 replace

'resume'.replaceAll(RegExp(r'e'), 'é'); // 'résumé'

請注意,replace 字符串不會被解釋。如果替換取決於匹配項(例如,在 RegExp 的捕獲組上),請改用 replaceAllMapped 方法。

相關用法


注:本文由純淨天空篩選整理自dart.dev大神的英文原創作品 replaceAll method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。