vote up 1 vote down star

I need an regular expression which matches the following:

'"test foo bar", "test"' => no match
'"test, foo bar", "test"' => "test, foo bar"
'"test, foo bar"' => "test, foo bar"
'"test foo bar"' => no match
'"test", "test, foo"' => "test, foo"
'"test", ","' => no match
'"test", 0, 0, "foo"' => no match

the regex should match any strings which contains the comma

I started with \".+?\" but it selects until the next string, which is not applicable for me. Thank you

Edit: thank you, i figured it out with all of your help \"[\w]+?,.+?\"

flag

1  
Just to be clear - do you mean a comma as a decimal point? A lot of SO users will expect you to mean a period (.) instead of a comma (,) - it's probably worth editing the question to make that explicit. – Jon Skeet Oct 29 at 7:08
I agree with jon. To me decimal point is '.' not ',' and as I know many people will think that too. – NawaMan Oct 29 at 7:11
I corrected, to commma. thank you – chrsk Oct 29 at 7:14

5 Answers

vote up 0 vote down check

I figured it out with all of your help \"[\w]+?,.+?\"

link|flag
vote up 2 vote down

Do you absolutely have to do this in one regular expression? I would use one regex to split the string into its constituent parts, and then just iterate over those to find the first one with a comma.

I don't have Java on this laptop yet, so I can't check the code to do the splitting, but I'd expect the regex to be something like this:

("[^"]*")(?:, ("[^"]*"))*

It's possible that the Java regex engine doesn't let you get at multiple matches for the same capturing group, however... I'm pretty sure you could use that in .NET easily enough, but it might be slightly trickier in Java. You might need something like:

(?:^|, )("[^"]*")

to consume "either the start of a line, or a comma followed by a space" before the start of the actual string.

All of this is still just trying to split the text into its bits though - it's not trying to find the first string containing a comma... but it may be the starting point for doing so. Unfortunately at that point my regex-fu runs out - I'd still do it the "split and then iterate" way :)

link|flag
Hey, thank you for your help, you're definetly right for a programmatically way, but i only wanted to do a ide find statement, which is easy and fast to reuse, where i can individually do some changes – chrsk Oct 29 at 7:35
vote up 1 vote down

Try this: \"[^\"]*,[^\"]*\".

link|flag
this is nearly perfect, but it matches ",", how can i prevent this? – chrsk Oct 29 at 7:20
@chrsk Change the *'s to +'s. – pst Oct 29 at 7:26
vote up 1 vote down
"[^,"]+?,[^"]+?"
link|flag
vote up 1 vote down

Have you tried:

"[^"]?,[^"]+?"

That will match, a ", any character not a " once or more until a comma, a comma, any character not a " once or more until a ", and a "

link|flag
Sorry, maybe it was unclear, i want to have if this is my string: '"test, foo", "test", "bar"' -> "test, foo". – chrsk Oct 29 at 7:16

Your Answer

Get an OpenID
or

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