Open4

Dartで憶える正規表現

Ryo24Ryo24
Ryo24Ryo24
ドキュメントのサンプル
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
抽象クラス
http://commondatastorage.googleapis.com/dartlang-api-docs/10274/dart_core/Match.html
具象クラス
http://commondatastorage.googleapis.com/dartlang-api-docs/10274/dart_coreimpl/MatchImplementation.html