Jump to content

Help checking match using variable within regex


Anti-Moronic

Recommended Posts

I have this:

 

preg_match("#$var1#", $var2, $match);

 

Now, sometimes var1 will have very small differences like use of punctuation.

 

Here's what I want:

 

$var1 = "they'll laugh";

$var2 = "theyll laugh";

 

I want regex to find a match, but only using the format above, with the variable already defined.

 

$var1 = "theyll laugh";

$var2 = "they'll laugh";

 

Same there.

 

Any idea? is this even possible with regex or will I have to prepare the strings first?

 

Thanks.

 

Link to comment
Share on other sites

It may be safer to take the variable out the string, being as $ is a special character in regex. I'm not totally sure on this though I've just always done it to be safe...

 

preg_match("#".$var1."#", $var2, $match);

 

NB This isn't the solution to your problem though - try Ken's suggestion.

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.