MortimerJazz Posted January 16, 2007 Share Posted January 16, 2007 Is it using substr_replace()? Link to comment https://forums.phpfreaks.com/topic/34417-whats-the-best-way-to-remove-spaces-from-a-string/ Share on other sites More sharing options...
taith Posted January 16, 2007 Share Posted January 16, 2007 $nospaces = str_replace(" ", "", $withspaces); Link to comment https://forums.phpfreaks.com/topic/34417-whats-the-best-way-to-remove-spaces-from-a-string/#findComment-162006 Share on other sites More sharing options...
boo_lolly Posted January 16, 2007 Share Posted January 16, 2007 [quote author=MortimerJazz link=topic=122650.msg506076#msg506076 date=1168960705]Is it using substr_replace()?[/quote]i know the [url=http://php.net/trim]trim()[/url] function has always worked for me. but taith's method seems to be more robust and efficient. thanks for the advice taith! Link to comment https://forums.phpfreaks.com/topic/34417-whats-the-best-way-to-remove-spaces-from-a-string/#findComment-162014 Share on other sites More sharing options...
MortimerJazz Posted January 16, 2007 Author Share Posted January 16, 2007 thanks taith Link to comment https://forums.phpfreaks.com/topic/34417-whats-the-best-way-to-remove-spaces-from-a-string/#findComment-162022 Share on other sites More sharing options...
taith Posted January 16, 2007 Share Posted January 16, 2007 no prob... trim() removes spaces from either side of a string, my str_replace() above removes all spaces from the string, wether it is at the end or between words... Link to comment https://forums.phpfreaks.com/topic/34417-whats-the-best-way-to-remove-spaces-from-a-string/#findComment-162036 Share on other sites More sharing options...
boo_lolly Posted January 16, 2007 Share Posted January 16, 2007 [quote author=taith link=topic=122650.msg506108#msg506108 date=1168963374]no prob... trim() removes spaces from either side of a string, my str_replace() above removes all spaces from the string, wether it is at the end or between words...[/quote]AH that's the difference. good to know. Link to comment https://forums.phpfreaks.com/topic/34417-whats-the-best-way-to-remove-spaces-from-a-string/#findComment-162190 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.