- or download this
while (content =~ m%One(.*?)three(.?)five\s+six(.*?)this%gs) {
$var1 = $1 ;
$var2 = $2 ;
$var3 = $3 ;
print "$var1\t$var2\t$var3\n" ;
}
- or download this
while (content =~ m%One(.*?)three(.?)five\s+six(.*?)this%gs) {
print(STDERR "[", pos($content), "]") ;
$var1 = $1 ;
...
$var3 = $3 ;
print "$var1\t$var2\t$var3\n" ;
}
- or download this
[
two four seven
48430]
- or download this
[48226]
three more numbers
- or download this
[50757]
first three numbers
...
third three numbers
[51826][52896]