Jump to content

preg_replace


roydukkey

Recommended Posts

You can use something like:

 

$str = '/Assignment1/images/doors';
$str = preg_replace('#(/\w+)$#', '', $str);
echo $str;

 

EDIT:

If you need to have the 'var =' in there, simply replace the first line in the snippet above with:

$str = 'var = /Assignment1/images/doors';

 

However, I have a feeling var is supposed to be a string variable (which misses the $ before it).. so just replace any '$str' part in the code with $var...

Link to comment
https://forums.phpfreaks.com/topic/121979-preg_replace/#findComment-629670
Share on other sites

  • 2 weeks later...

ok but there is a problem, this works great until there are hyphens in the variable. ex.

 

$str = '/Assignment1/images/doors/09-10-2008';
$str = preg_replace('#(/\w+)$#', '', $str);
echo $str;

 

$str equals '/Assignment1/images/doors/09-10-2008' when

$str should equal '/Assignment1/images/doors'

 

How could this be fixed? thx

Link to comment
https://forums.phpfreaks.com/topic/121979-preg_replace/#findComment-638681
Share on other sites

Is this what you are looking for?

 

//$str = '/Assignment1/images/doors/09-10-2008'; //  ouputs   /Assignment1/images/doors
//$str = '/Assignment1/images/doors'; //  outputs  /Assignment1/images
$str = preg_replace('#/[^/]+$#', '', $str);
echo $str;

 

Alternate Uncommenting one, then the other. This should be along the lines of what you are looking for.

 

 

Link to comment
https://forums.phpfreaks.com/topic/121979-preg_replace/#findComment-638745
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.