my $str='expire=0';
if ($str =~/expire\s*=\s* (?: 0[1-9]|[1-9][0-9])/){
print " found it ";
}
its not working
Condition expire= should be followed by a number between 1-99?
|
|
Your regex has spaces, remove them:
Also the regex EDIT: Based on your comments, you want to allow a number from
or a shorter version:
Since your example has Also note that I've added the start and end anchors. Without them the regex may match any valid sub-string of the input. Example it can match |
|||||||||||
|
|
|
If you want to use spaces in your regex without them actually matching spaces, you need to use the |
|||
|
You have a space between the second \s* and the beginning of the non-capturing group. Try this instead:
|
|||
|
|