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
https://forums.phpfreaks.com/topic/53056-solved-regex-on-url/
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.