vote up 0 vote down star

I need to check to see if a string of many words / letters / etc, contains only 1 set of triple double-quotes (i.e. """), but can also contain single double-quotes (") and double double-quotes (""), using a regex. Haven't had much success thus far.

flag

4 Answers

vote up 0 vote down check

A regex with negative lookahead can do it:

(?!.*"{3}.*"{3}).*"{3}.*

I tried it with these lines of java code:

String good = "hello \"\"\" hello \"\" hello ";
String bad = "hello \"\"\" hello \"\"\" hello ";
String regex = "(?!.*\"{3}.*\"{3}).*\"{3}.*";
System.out.println( good.matches( regex ) );
System.out.println( bad.matches( regex ) );

...with output:

true
false
link|flag
this is perfect, thanks! I'm assuming you put the negative lookahead portion first so that it makes sure that there aren't 2 instances of triple double-quotes before matching? – JF Sep 30 at 17:54
Yes, that's exactly the way it works. – tangens Sep 30 at 19:34
vote up 1 vote down

Try using the number of occurrences operator to match exactly three double-quotes.

  • \"{3}
  • ["]{3}
  • [\"]{3}

I've quickly checked using http://www.regextester.com/, seems to work fine.

How you correctly compile the regex in your language of choice may vary, though!

link|flag
Thanks, but there will be other words around it / possibility of double double-quotes etc. – JF Sep 29 at 21:08
ah - ok - that's a little trickier... Should be possible though I think... – Brabster Sep 29 at 21:11
agreed. I just have no idea how to do it. – JF Sep 29 at 21:12
Yep, thinking. This is closer... [^"][\"]{3}[^"] (not a d-quote, then 3 d-quotes, then a char that's not a d-quote) – Brabster Sep 29 at 21:16
hm yeah. A good test string would be: match: (hello """ hello "" hello) no match: (hello """ hello """ hello) – JF Sep 29 at 21:20
show 2 more comments
vote up 0 vote down

Depends on your language, but you should only need to match for three double quotes (e.g., /\"{3}/) and then count the matches to see if there is exactly one.

link|flag
I thought about that, I'm just looking to be able to do it in a more concise manner / least amount of code possible. – JF Sep 29 at 21:07
vote up 0 vote down

There are probably plenty of ways to do this, but a simple one is to merely look for multiple occurrences of triple quotes then invert the regular expression. Here's an example from Perl:

use strict;
use warnings;

my $match = 'hello """ hello "" hello';
my $no_match = 'hello """ hello """ hello';
my $regex = '[\"]{3}.*?[\"]{3}';

if ($match !~ /$regex/) {
    print "Matched as it should!\n";
}
if ($no_match !~ /$regex/) {
    print "You shouldn't see this!\n";
}

Which outputs:

Matched as it should!

Basically, you are telling it to find the thing you DON'T want, then inverting the truth. Hope that makes sense. Can help you convert the example to another language if you need help.

link|flag
Also, to deal with the case of quadruple+ quotes, you'll probably want your regular expression to be modified as suggested by Brabster, i.e. [^"][\"]{3}[^"], thus making the final regex (to invert) "[^"][\"]{3}[^"].*?[^"][\"]{3}[^"]" – Morinar Sep 29 at 21:44

Your Answer

Get an OpenID
or

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