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