Help for this page

Select Code to Download


  1. or download this
    sub m{
     $_[0]=~s///;
    }
    m("String");
    
  2. or download this
    *_=\"Hello";
    s///;
    
  3. or download this
    sub m{
     local *_=\$_[0];
     s///;
    }
     m("String");