Help for this page

Select Code to Download


  1. or download this
    # Matches if the string contains a sequence
    # of 1 or more lowercase letters
    $str =~ /[a-z]+/
    
  2. or download this
    # Matches if the string consists entirely of
    # a sequence of 1 or more lowercase letters,
    # optionally followed by a newline
    $str =~ /^[a-z]+$/
    
  3. or download this
    # Matches if the string consists entirely of
    # a sequence of 1 or more lowercase letters
    $str =~ /^[a-z]+\z/