Help for this page

Select Code to Download


  1. or download this
    while (/TATA/g) {
        print "Matched 'TATA' at position ", pos, "\n";
        pos() -= 2;
    }
    
  2. or download this
    while (/TA(?=TA)/g) {
        print "Matched 'TATA' at position ", pos, "\n";
    }