Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    Number of matches: 2
    
    Number of occurences = 2
    
  2. or download this
    foreach ($string)
    {
       s/^\s*//; #delete leading spaces
       s/\s*$//; #delete trailing spaces
    }