Jump to content

Need help removing the right characters from string.


xwishmasterx

Recommended Posts

Hello

 

My script is storing images in the database, to make it ready for some smartycode prefix. I wish to just retrieve the value from the database and remove a few characters:

 

example:

2012/05/244bebb53c70825476bb9675d49232c8%s.jpeg => remove the%s just before the extension.

 

Is there a tip to remove like the last 2 characters right before the extension?

According to your example string this will work:

$str = '2012/05/244bebb53c70825476bb9675d49232c8%s.jpeg';

$str = substr_replace($str, '', -7, 2);

 

However it won't work if you switch to a 3 character extension, like .jpg or .gif.

 

If the text you want to remove is always "%s" then you can simply use str_replace.

 

$str = str_replace('%s', '', $str);

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.