Help for this page

Select Code to Download


  1. or download this
    /$my_regex \n \z/xms
    
  2. or download this
    my $str = "123dog\n";
    say "-->$str<--";
    ...
    -->123dog
    <--
    
  3. or download this
    printf "%vd", $my_str; 
    
    ...
    #Checking an ascii chart for the code 10:
    #line feed.  Ah hah, I forgot to chomp()
    #the string!