- Oct 9, 1999
- 11,464
- 2
- 0
I need to match a comma and any number of spaces and replace it with one space. The closest I can come up with is [,\s*] but its not interpreting correctly. Where am I going wrong?
Originally posted by: esun
Ohh, yeah, Onund is right. If you write [,\s*], it will match a comma, any whitespace character, and any asterisk, which is not what you want.
Originally posted by: tfinch2
Originally posted by: esun
Ohh, yeah, Onund is right. If you write [,\s*], it will match a comma, any whitespace character, and any asterisk, which is not what you want.
😕
Please reread what Onund posted.
