I am trying to grab the capital letters of a couple of words and wrap them in spans. I am using preg_replace, but it's not outputting anything.
preg_replace("/[A-Z]/", "<span class=\"initial\">$1</span>", $str)
|
|
|
|
|
|
|
Use parentheses around your desired capture. |
||
|
|
|
|
\0 will also match the entire matched expression without doing an explicit capture using parenthesis.
As always, you can go to php.net/preg_replace or php.net/<whatever search term> to search the documentation quickly. Quoth the documentation:
|
||
|
|
|
|
From the preg_replace documentation on php.net:
See Flubba's example. |
||
|
|
|
|
You need to put the match in parentheses, like this: |
||||
|