Help for this page

Select Code to Download


  1. or download this
       /([\d]+)  # match first nonspace ( greedy )
    
  2. or download this
    ([\w\s|"|\-|\']+) # capture at word boundary
    
  3. or download this
    \s\s+     # single space followed by multiple spaces
    
  4. or download this
    ([\d,\.]+) # capture digit, comma, period
    
  5. or download this
    \s[^\d]+   # single space, non-digit character