Help for this page

Select Code to Download


  1. or download this
    "\n" =~ /\n.*\z/;   # matches
    
  2. or download this
    "\n" =~ /.*\z/;     # doesn't match. i would expect it to match
    
  3. or download this
    "\n" =~ /[^\n]*\z/; # matches. like expected. but [\n]* is like .*
    
  4. or download this
    "\n" =~ /.?\z/;
    
  5. or download this
    "\n" =~ /.{0,}\z/;
    
  6. or download this
    "f\n" =~ /.?f\z/;