Help for this page
while (/TATA/g) { print "Matched 'TATA' at position ", pos, "\n"; pos() -= 2; }
while (/TA(?=TA)/g) { print "Matched 'TATA' at position ", pos, "\n"; }