Skip to content

Instantly share code, notes, and snippets.

@vsalbaba
Created April 24, 2014 15:56
Show Gist options
  • Save vsalbaba/11259735 to your computer and use it in GitHub Desktop.
Save vsalbaba/11259735 to your computer and use it in GitHub Desktop.
line = "<p>aaa bbb ccc <abbr title=\"AUTHOR:5\">toto je autor</abbr> ddd eee fff <abbr title=\"WORK:10\">toto je jeho dilo</abbr></p>"
regexp = /<abbr title=\"(.*?):(.*?)\">(.*?)<\/abbr>/
line.scan(regexp)
# => [["AUTHOR", "5", "toto je autor"], ["WORK", "10", "toto je jeho dilo"]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment