Help for this page

Select Code to Download


  1. or download this
    $trans =~ s/$item/$newitem/g;
    
  2. or download this
    if( grep( $_ =~ $item, @special ) ) {
       $trans =~ s/\$item/$newitem/g;
    } else {
       $trans =~ s/$item/$newitem/g;
    }