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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.