Created
March 4, 2015 02:48
-
-
Save G4MR/8bec3d4c21c1ca0f4728 to your computer and use it in GitHub Desktop.
nim lang - nre (regular expression iteration)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var matches: seq[string] = @[] | |
for match in soundcloud_html.findIter(re("<meta itemprop=\"customitem\" content=\"([^\"]+)\" />", "im")): | |
matches.add(match.captures[0]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment