I'm learning regular expressions and I'm not sure how to "take" something specific out of the output.
Example - I want to retrieve specific CSS style's value.
Here's an simplified example:
$source = 'foo { bar: Something }
foo { bar: Else }
foo { bar: Yay }';
I want to output this after var_dump:
array(3) {
[0]=>
string(9) "Something"
[1]=>
string(4) "Else"
[2]=>
string(3) "Yay"
}
Here's my regex:
preg_match_all("/foo\s*{\s*bar:\s*[A-Za-z]*\s*}/",$source,$matches);
foreach($matches as $example) {
echo '<pre>';
var_dump($example);
echo '</pre>';
}
And I'm getting:
array(3) {
[0]=>
string(22) "foo { bar: Something }"
[1]=>
string(17) "foo { bar: Else }"
[2]=>
string(16) "foo { bar: Yay }"
}
How to limit my output data so it will display only the desired content not everything that matches regex?
Parentheses in this case are called "capturing group"
http://nz.php.net/manual/en/regexp.reference.subpatterns.php