Help for this page

Select Code to Download


  1. or download this
    my $tag = 'test text     ';
    chomp $tag;
    print $tag . '#';
    
    > test text     #
    
  2. or download this
    $tag =  lc $tag;
    $tag =~ s/[^az09 _\-\+\.]//g;