Help for this page

Select Code to Download


  1. or download this
    for ($target =~ /is/g) {
        s//are/;
    }
    
  2. or download this
    for ($target =~ /is/) {
        s//are/;
    }
    
  3. or download this
    Modification of a read-only value attempted at eval.pl line 6.