- or download this
my $text = "This is a test for the word blue more things blue and then
+ some very large text with a lot of things blue and done";
- or download this
my $WANT = "blue";
...
(?:$WANT)
(?:\s+\w+){0,5}
/xgi;
- or download this
a test for the word blue more things blue and then
with a lot of things blue and done
- or download this
a test for the word blue more things blue and then some very large
with a lot of things blue and done
- or download this
my $WANT = "blue";
...
(?:\s+\w+){0,5}
)?
/xgi;