xwishmasterx Posted June 7, 2012 Share Posted June 7, 2012 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 https://forums.phpfreaks.com/topic/263815-need-help-removing-the-right-characters-from-string/ Share on other sites More sharing options...
scootstah Posted June 7, 2012 Share Posted June 7, 2012 Is there a tip to remove like the last 2 characters right before the extension? Sure, you can use substr_replace. Link to comment https://forums.phpfreaks.com/topic/263815-need-help-removing-the-right-characters-from-string/#findComment-1351894 Share on other sites More sharing options...
xwishmasterx Posted June 7, 2012 Author Share Posted June 7, 2012 I have tried several things but I cannot "target" the coorect 2 characters:( I would love an example^^ Link to comment https://forums.phpfreaks.com/topic/263815-need-help-removing-the-right-characters-from-string/#findComment-1351895 Share on other sites More sharing options...
scootstah Posted June 7, 2012 Share Posted June 7, 2012 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 https://forums.phpfreaks.com/topic/263815-need-help-removing-the-right-characters-from-string/#findComment-1351902 Share on other sites More sharing options...
xwishmasterx Posted June 7, 2012 Author Share Posted June 7, 2012 Thanks a bunch, I totally overlooked the option as I couldn't just strip "s". Problem solved! Link to comment https://forums.phpfreaks.com/topic/263815-need-help-removing-the-right-characters-from-string/#findComment-1351905 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.