Help for this page

Select Code to Download


  1. or download this
    $string = "hello"; $string =~ /^\s+|\s$/g;
    
  2. or download this
    $string = "hello";
    
  3. or download this
    ($string = $source) =~ s/^\s+|\s$/g;