vote up 1 vote down star

I'm using the following regex to capture a fixed width "description" field that is always 50 characters long:

(?.{50})

My problem is that the descriptions sometimes contain a lot of whitespace, e.g.

"FLUID        COMPRESSOR                          "

Can somebody provide a regex that:

  1. Trims all whitespace off the end
  2. Collapses any whitespace in between words to a single space
flag

75% accept rate

5 Answers

vote up 7 vote down check

Substitute two or more spaces for one space:

s/  +/ /g

Edit: for any white space (not just spaces) you can use \s if you're using a perl-compatible regex library, and the curly brace syntax for number of occurrences, e.g.

s/\s\s+/ /g

or

s/\s{2,}/ /g

Edit #2: forgot the /g global suffix, thanks JL

link|flag
Or even just s/\s+/ /g -- it occasionally maps a single space to another single space, but it hardly matters. But the global suffix does matter, of course. – Jonathan Leffler Oct 20 '08 at 5:48
Unfortunately all proposed regexes leave one space at the end if it was there in the initial string. – Alexander Prokofyev Oct 21 '08 at 4:51
Good point, but is there a single regex that can do both? – sk Oct 21 '08 at 16:44
vote up 0 vote down

Since compressing whitespace and trimming whitespace around the edges are conceptually different operations, I like doing it in two steps:

re.replace("s/\s+/ /g", str.strip())

Not the most efficient, but quite readable.

link|flag
vote up 4 vote down
str = Regex.Replace(str, " +( |$)", "$1");
link|flag
Bravo! This regex correctly processes spaces between words and at the end of string. – Alexander Prokofyev Oct 21 '08 at 4:52
Same thing I was going to suggest. :) – MizardX Oct 21 '08 at 17:38
vote up 0 vote down

Perl-variants: 1) s/\s+$//; 2) s/\s+/ /g;

link|flag
vote up 0 vote down

Is there a particular reason you are asking for a regular expression? They may not be the best tool for this task.

A replacement like

 s/[ \t]+/ /g

should compress the internal whitespace (actually, it will compress leading and trailing whitespace too, but it doesn't sound like that is a problem.), and

s/[ \t]+$/$/

will take care of the trailing whitespace. [I'm using sedish syntax here. You didn't say what flavor you prefer.]


Right off hand I don't see a way to do it in a single expression.

link|flag
I'm using this inside of a larger regular expression, from stackoverflow.com/questions/162727/… – Chris Karcher Oct 19 '08 at 19:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.