Help for this page

Select Code to Download


  1. or download this
      /^hello.../
    
  2. or download this
      /
        (?!   # fail to match if you find (
    ...
          Ga  #   followed by "Ga"
        )     # )
      /x
    
  3. or download this
      /^hello(?!.*Ga)/