Open4
Dartで憶える正規表現
ドキュメントのサンプル
RegExp exp = RegExp(r"(\w+)");
String str = "Parse my string";
Iterable<RegExpMatch> matches = exp.allMatches(str);
for (final i in matches.toList()) {
print(i);
}
出力結果
Instance of '_MatchImplementation'
Instance of '_MatchImplementation'
Instance of '_MatchImplementation'
ドキュメントのサンプルを実行し、返ってくるやつ_MatchImplementation
抽象クラス
具象クラス
正規表現で表記方法をコンバートしているDartのコード
正規表現を用いた文字列探索class