vote up -2 vote down star
1
? or `{0,1}`

will match some pattern when necessary,but now I want to do it reversely.

Say,don't match if necessary.

Anyone get what I mean has the solution?

flag

49% accept rate
1  
I've answered the question as below but it seems like everyone has misunderstood what you want. Perhaps you could give an example of how you would like it to match. – Kinopiko Nov 5 at 10:20
3  
@Mask: You really need to re-state the question. It is very ambiguous and hard to answer. Try to add a sample of what you want to do. – Tomalak Nov 5 at 10:24

4 Answers

vote up 4 vote down check

Just put a question mark after the {0,1}, as in {0,1}?, and it will prefer matching zero than one time. The question mark makes it "non-greedy", which means it will not swallow as much as possible.

Test (in Perl):

#! perl
use warnings;
use strict;

my $string = "abcdefghijk";

if ($string =~ /(..{0,1}?)/) {
    print "$1\n";
}

Prints

a

You can also use ?? in place of {0,1}?.

link|flag
@Lukas: Thank you for your additions to my answer. – Kinopiko Nov 5 at 10:01
But what I want is to make it greedy,match if possible. – Mask Nov 5 at 10:09
I want it to prefer matching one than zero time. – Mask Nov 5 at 10:12
3  
That's what ? and {0,1} do by default. Regex is greedy unless noted otherwise. ? and {0,1} do match if possible, not if necessary (as you stated). – Tomalak Nov 5 at 10:16
vote up 0 vote down

So, you need "two or more"? Then try this: {2,}

link|flag
nope,you missed my point. – Mask Nov 5 at 9:56
vote up 0 vote down

It sounds to me like you're looking for a negative assertion. The syntax for that is usually (?!...)

For example, A(?!B)C will match A then C, but not if the beginning of C matches B.

link|flag
vote up 0 vote down

? or {0,1} will match some pattern when necessary, but now I want to do it reversely.

No, ? or {0,1} will match some pattern if possible. Regex is greedy by default.

To make them match when necessary, they need to look like ?? or {0,1}?.

Seems you already have what you want.

Say, don't match if necessary.

Saying "don't match" is generally something between difficult and impossible in regex. Unless you come up with a real sample of what you need to do, this is hard to answer.

link|flag

Your Answer

Get an OpenID
or

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