Skip to content

Instantly share code, notes, and snippets.

@neves
Created August 3, 2012 14:35
Show Gist options
  • Save neves/3248180 to your computer and use it in GitHub Desktop.
Save neves/3248180 to your computer and use it in GitHub Desktop.
<?php
$rx = "!\[soundcloud id='(\d+)'\]!";
$str = <<<S
[soundcloud id='44111489']
[soundcloud id='54111489']
S;
$match = array();
preg_match_all($rx, $str, $match);
print_r($match[1]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment