3
ドキュメント(https://api.dartlang.org/stable/1.21.1/dart-core/RegExp-class.html)を読みましたが、探しているものが見つかりませんでした。私はそれを理解しなかったか、何かを見落とした。Googleダーツにはregex.exec()のようなものがありますか?
私はGoogleのダーツで、次を複製しようとしています:
var regex = /foo_(\d+)/g,
str = "text foo_123 more text foo_456 foo_789 end text",
match = null;
while (match = regex.exec(str)) {
console.log(match); // matched capture groups
console.log(match.index); // index of where match starts in string
console.log(regex.lastIndex); // index of where match ends in string
}
私もjsfiddleを作成しました:https://jsfiddle.net/h3z88udz/
ダーツは、正規表現のexec(のようなものを持っていますか)?
ありがとう!私はちょうど整数の両方を受け入れるグループ()とグループ()を含むメソッドのリストを見た。 – Asperger