Jump to content

[SOLVED] Regex on URL


kevingarnett2000

Recommended Posts

Hi,

 

Lets see the following URL:

 

http://somewebsite.com?var1=value1&var2=value2&var3=value3&

 

I need to replace certein parameters in this url

 

so i did something like:

 

$url = "http://somewebsite.com?var1=value1&var2=value2&var3=value3&";

 

$pattern = "/var1=.*&/";

$replace = "var1=someothervalue&";

 

echo preg_replace($pattern, $replace, $url);

 

However it is not producing the correct result, it echos:

 

"http://somewebsite.com?var1=someothervalue&"

 

My question is: How do I go about writing the regular expression?

 

Thank you,

Kevin

Link to comment
Share on other sites

The * is greedy, thus gobbling everything up to the last &. You can fix this by making it ungreedy: *?. Alternatively, don't bother matching the variable name only to put it back--use a lookaround:

 

/(?<=var1=)[^&]*/

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.