Help for this page

Select Code to Download


  1. or download this
    (?=a|b|c)
    
  2. or download this
    perl -e '$_ = "(b)."; /\([abc]\)/ && do { print "match!\n"; };'
    
  3. or download this
    perl -e '$_ = "(b)."; /\((a|b|c)\)/ && do { print "match!\n"; };'