Help for this page

Select Code to Download


  1. or download this
    /foo|bar/;  # Matches "foo" or "bar"
    /fo(o|b)ar/;# Matches "fooar" or "fobar"
    
  2. or download this
    /foo{3}/    # Matches "foooo"
    /(foo){3}/  # Matches "foofoofoo"