Help for this page

Select Code to Download


  1. or download this
    if $line =~ /^myword.*$/ {
         $line =~ s/$&//g
        }
    
  2. or download this
    if $line =~ /(^myword.*option\d+\s+).*$/ {
         $line =~ s/$1//g
        }