Help for this page

Select Code to Download


  1. or download this
        $var2 = s/123/456/g (tr/a-z/A-Z/ ($var));
    
  2. or download this
        sub apply (&$) {
            local $_ = $_[1];
    ...
        }
        
        $var2 = apply {s/123/456/g; tr/a-z/A-Z/} $var;