Skip to content

Instantly share code, notes, and snippets.

@yeoupooh
Last active September 25, 2018 02:46
Show Gist options
  • Save yeoupooh/aa36ca2b1972f570aa6ab12e495abad1 to your computer and use it in GitHub Desktop.
Save yeoupooh/aa36ca2b1972f570aa6ab12e495abad1 to your computer and use it in GitHub Desktop.
void main() {
var matcher = new RegExp('src="([^"]*)"');
var g = matcher.allMatches('abc class="videoclass" src="source" test>');
print(g.length);
g.forEach((m) {
print('0=${m[0]}, 1=${m[1]}');
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment