I want to be replace any occurrence of more than one space with a single space, but take no action in text between quotes.
Is there any way of doing this with a Java regex? If so, can you please attempt it or give me a hint?
|
|
|
|
|
|
|
Here's another approach, that uses a lookahead to determine that all quotation marks after the current position come in matched pairs.
If needed, the lookahead can be adapted to handle escaped quotation marks inside the quoted sections. |
||
|
|
|
|
When trying to match something that can be contained within something else, it can be helpful to construct a regular expression that matches both, like this:
This will match a quoted string or two or more spaces. Because the two expressions are combined, it will match a quoted string OR two or more spaces, but not spaces within quotes. Using this expression, you will need to examine each match to determine if it is a quoted string or two or more spaces and act accordingly:
|
|||
|
|
|
|
text between quotes : Are the quotes within the same line or multiple lines ? |
||
|
|
|
|
Tokenize it and emit a single space between tokens. A quick google for "java tokenizer that handles quotes" turned up: this link YMMV edit: SO didn't like that link. Here's the google search link: google. It was the first result. |
||
|
|
|
|
Personally, I don't use Java, but this RegExp could do the trick:
Trying the expression with RegExBuddy, it generates this code, looks fine to me:
At least, it seems to work fine in Python:
|
|||
|
|
|
|
After you parse out the quoted content, run this on the rest, in bulk or piece by piece as necessary:
|
||
|
|
|
|
Jeff, you're on the right track, but there are a few errors in your code, to wit: (1) You forgot to escape the quotation marks inside the negated character classes; (2) The parens inside the first capturing group should have been of the non-capturing variety; (3) If the second set of capturing parens doesn't participate in a match,
|
||||
|