Help for this page

Select Code to Download


  1. or download this
    print "string"
    print("string")
    print HANDLE "string"
    print(HANDLE "string")
    
  2. or download this
    while(<FILE>) {
      s/print(\s+|\s*\(\s*)([A-Z]+\s+)?"string"(\s*\))?/1/;
      print;
    }
    
  3. or download this
    print "string" if (somecond)       becomes 1 if (somecond)
    something if print HANDLE "string"         something if 1
    etc.