Jump to content

RegExr Help


Danny620

Recommended Posts

I have user submitted data like:  repairs,national, companies, larger,cheaper, large, trade,  windscreen  ,

 

as you can see its not consistent in some cases it has a space after the comma and then it has more spaces, what I'm asking for is a preg_replace expression that would tidy the data to end up like this:

 

repairs, national, companies, larger, cheaper, large, trade, windscreen

 

so 1 space after the comma, and no comma on end of string

 

thanks

Link to comment
https://forums.phpfreaks.com/topic/263329-regexr-help/
Share on other sites

im using this to remove the comma on end of string however its not working


echo $theString = 'repairs,national, companies, larger,cheaper, large, trade,   windscreen  ,'."<br />";

echo $theString = trim(preg_replace("/\s*,\s*/", ", ", $theString))."<br />";

echo $theString = rtrim( $theString, ',' ); ?>

Link to comment
https://forums.phpfreaks.com/topic/263329-regexr-help/#findComment-1349541
Share on other sites

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.