Skip to content

Instantly share code, notes, and snippets.

@sam113101
Last active August 29, 2015 14:13
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 sam113101/8e5d9b6f356612937f88 to your computer and use it in GitHub Desktop.
Save sam113101/8e5d9b6f356612937f88 to your computer and use it in GitHub Desktop.
[1] pry(main)> "<h1>Hello World</h1>\n[audio mp3=\"http://wordpress.dev/wp-content/uploads/2015/01/episode-1.mp3\"][/audio]\n[audio mp3=\"http://wordpress.dev/wp-content/uploads/2015/01/episode-2.mp3\"][/audio]\n<p style=\"color: red\">Stuff</p>\n".scan(/\[audio (\w+)=\"(.+)\"\]\[\/audio\]/)
=> [["mp3", "http://wordpress.dev/wp-content/uploads/2015/01/episode-1.mp3"], ["mp3", "http://wordpress.dev/wp-content/uploads/2015/01/episode-2.mp3"]]
[2] pry(main)> "<h1>Hello World</h1>\n[audio mp3=\"http://wordpress.dev/wp-content/uploads/2015/01/episode-1.mp3\"][/audio]\n[audio mp3=\"http://wordpress.dev/wp-content/uploads/2015/01/episode-2.mp3\"][/audio]\n<p style=\"color: red\">Stuff</p>\n".scan(/(\[audio (\w+)=\"(.+)\"\]\[\/audio\])/)
=> [["[audio mp3=\"http://wordpress.dev/wp-content/uploads/2015/01/episode-1.mp3\"][/audio]", "mp3", "http://wordpress.dev/wp-content/uploads/2015/01/episode-1.mp3"], ["[audio mp3=\"http://wordpress.dev/wp-content/uploads/2015/01/episode-2.mp3\"][/audio]", "mp3", "http://wordpress.dev/wp-content/uploads/2015/01/episode-2.mp3"]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment