📜  Dart 正则表达式所有匹配 - Javascript 代码示例
📅  最后修改于: 2022-03-11 15:01:41.588000             🧑  作者: Mango
代码示例1
RegExp exp = new RegExp(r"(\w+)");
String str = "Parse my string";
Iterable matches = exp.allMatches(str);