vote up 5 vote down star

in Javascript, the following:

var test = '"the quick" "brown fox" "jumps over" "the lazy dog"';
var result = test.match(/".*?"/g);
alert(result);

yields "the quick","brown fox","jumps over","the lazy dog"

I want each matched element to be unquoted: the quick,brown fox,jumps over,the lazy dog

what regexp will do this?

flag

37% accept rate

7 Answers

vote up 4 vote down check

This seems to work:

var test = '"the quick" "brown fox" "jumps over" "the lazy dog"';
var result = test.match(/[^"]+(?=(" ")|"$)/g);
alert(result);

Note: This doesn't match empty elements (i.e. ""). Also, it won't work in browsers that don't support JavaScript 1.5 (lookaheads are a 1.5 feature).

See http://www.javascriptkit.com/javatutors/redev2.shtml for more info.

link|flag
Bingo! .. works perfectly for my purpose! thanks David! – Scott Evernden Sep 29 '08 at 6:03
vote up 0 vote down

Here's one way:

var test = '"the quick" "brown fox" "jumps over" "the lazy dog"';
var result = test.replace(/"(.*?)"/g, "$1");
alert(result);
link|flag
thanks but result is simply a string. i want a 4-element array ( what match() returns ) with the quotes stripped away – Scott Evernden Sep 29 '08 at 5:54
Ah, sry. My javascript's a bit rusty. Looks like there are no regex lookbehinds in javascript. So David's answer is your best bet. – Gordon Wilson Sep 29 '08 at 6:14
vote up 0 vote down

There are two parts to the fix for your problem, I think...

First, the .*? means "zero or more of any character, repeated zero or one times", which is an odd way of writing .*. More seriously, the 'any character' bit includes double quotes -- what you seem to be after is, therefore:

/"[^"]*"/g

This matches a double-quote, any string of characters excluding double quotes, and another double quote.

The second part is that you want to capture just the part inside the double quotes. In Perl or systems using PCRE (Perl-Compatible Regular Expressions) -- not sure whether Javascript falls into that category -- then you would use parentheses to capture the information you're after:

/"([^"]*)"/g

You then have to know how to get at the substrings - that varies from language to language, and I don't know enough Javascript to help at that point.

link|flag
i thought .*? meant zero or more of any character, non-greedy / shortest match .. hmm – Scott Evernden Sep 29 '08 at 5:46
Scott is correct, .*? is the non-greedy version of .* – Greg Hewgill Sep 29 '08 at 5:49
vote up 0 vote down

You can use the Javascript replace() method to strip them out.

var test = '"the quick" "brown fox" "jumps over" "the lazy dog"';

var result = test.replace(/"/, '');

Is there more to it than just getting rid of the double-quotes?

link|flag
i specifically want the result array that match() returns. i know i can trim each element, but i'm sure there's a way to do it one-step using a crafty regular expression – Scott Evernden Sep 29 '08 at 5:50
Ahhhhh! I understand now. Looks like you've already got a few good answers though. – Mark Biek Sep 29 '08 at 12:24
vote up 0 vote down

It is not one regexp, but two simpler regexps.

var test = '"the quick" "brown fox" "jumps over" "the lazy dog"';

var result = test.match(/".*?"/g);
// ["the quick","brown fox","jumps over","the lazy dog"]

result.map(function(el) { return el.replace(/^"|"$/g, ""); });
// [the quick,brown fox,jumps over,the lazy dog]
link|flag
Yeah i can see how this would work, but I sorta figure if I am going to plant some ugly-ass regexp stuff in my code, it oughta be worth it by do everything i want in one shot. :) – Scott Evernden Sep 29 '08 at 6:21
David's regexp is just fine but an alternative solution won't hurt a bit. – J.F. Sebastian Sep 29 '08 at 6:33
vote up 0 vote down

This is what I would use in actionscript3:

var test:String = '"the quick" "brown fox" "jumps over" "the lazy dog"';
var result:Array = test.match(/(?<=^"| ").*?(?=" |"$)/g);
for each(var str:String in result){
    trace(str);
}
link|flag
vote up 0 vote down

grapefrukt's answer works also. I would up using a variation of David's

match(/[^"]+(?=("\s*")|"$)/g)

as it properly deals with arbitrary amounts of white space and tabs tween the strings, which is what I needed.

link|flag

Your Answer

Get an OpenID
or

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