Help for this page

Select Code to Download


  1. or download this
     | ^              REGEX METACHARS            REGEX MODIFIERS
     &&               ^     string begin         /i case insens.
    ...
     or xor           {1,2} amount           \w == [A-Za-z0-9_]
                      \b    word boundary    \d == [0-9] 
                      \z    string end       \S, \W and \D negate
    
  2. or download this
     | ^              REGEX METACHARS            REGEX MODIFIERS
     &&               ^     string begin         /i case insens.
    ...
     or xor           |     alternation      \w == [A-Za-z0-9_]
                      \b    word boundary    \d == [0-9] 
                      \z    string end       \S, \W and \D negate