Help for this page

Select Code to Download


  1. or download this
    $string =~ /[abc]/; # character class
    $string =~ /a|b|c/; # alternation
    
  2. or download this
    $string =~ /bob/ || /alice/; # Good
    $string =~ /(?:bob|alice)/;  # Bad