Jump to content

[SOLVED] conditional help


LemonInflux

Recommended Posts

I have my regex function here:

 

preg_replace("#\{% $tag %\}#si", $replace, $str)

 

If that could be tidier, please tell me. Basically, what it does, is go through $str, find matches for:

 

{% TAG_NAME_HERE %}

 

and replace that all with $replace. For example, if $tag = bob and $replace = jim, this string:

 

'Hello, {% bob %}'

 

would be changed to:

 

'Hello, jim'

 

Now, what I want to do is add something so if I do, say...

 

'Hello {{% bob %}}' that doesn't change it, because it has a double brackets.

 

In a nutshell, what I'm asking is...

 

How do I change "#\{% $tag %\}#si" to only pick up {% tag %} and not {{% tag %}}

 

Sorry if this is terribly explained. Just ask and I'll try to explain it a bit more simply.

 

Thanks in advance!

 

Tom.

Link to comment
https://forums.phpfreaks.com/topic/102783-solved-conditional-help/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.