I have a very simple question to which I seek answers:
use warnings; open FILE, "Testus.txt" or die "Couldn't open file."; while (<FILE>) { print "$_ \n" for /^(\d+\.\d+\t\d+\.\d+)/ };
That is my RegEx which matches strings like 234.555 "tab" 43.235 etc.
However, now I want one of the \d+ (the 3rd one of the 4) to only match numbers which are above 50 and below 250. How do I modify a \d+ to only match a certain value of numbers? Thanks alotIn reply to How to modify \d in RegEx by Erosia
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |