- or download this
@a = 1 .. 7;
- or download this
while (something) {
if (EXPRSTART .. EXPREND) {
doit();
}
}
- or download this
$inmatch = 0;
while (something) {
...
$inmatch = 0;
}
}
- or download this
while (something) {
if (EXPRSTART ... EXPREND) {
doit();
}
}
- or download this
$inmatch = 0;
while (something) {
...
$inmatch = 0;
}
}
- or download this
while (<>) { print if /A/ .. /B/ }
- or download this
while (<>) { print if /A/ ... /B/ }
- or download this
Here's some text before
Some text with an A
...
more useless lines 1
more useless lines 2
more useless lines 3