How can I escape this?
/{\([^.{}]*)-}/
And this?
/{\([^.{}]*)+}/
|
|
You need to escape the parentheses, the braces and the plus sign -- if you want to match them literally. The PHP code for your regex would then be:
...and...
It will match things like |
|||
|
|
|
preg_quote will give you the answers. |
|||
|
|