Skip to content

Instantly share code, notes, and snippets.

@G4MR
Created March 4, 2015 02:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save G4MR/8bec3d4c21c1ca0f4728 to your computer and use it in GitHub Desktop.
Save G4MR/8bec3d4c21c1ca0f4728 to your computer and use it in GitHub Desktop.
nim lang - nre (regular expression iteration)
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