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?

Link to comment
Share on other sites

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);

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.