? 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?
|
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?
|
||||||||
|
|
|
Just put a question mark after the Test (in Perl):
Prints a You can also use |
||||||||||
|
|
|
So, you need "two or more"? Then try this: |
||
|
|
|
It sounds to me like you're looking for a negative assertion. The syntax for that is usually For example, |
||
|
|
|
|
No, To make them match when necessary, they need to look like Seems you already have what you want.
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. |
||
|
|