RESULTS:
Execution Time(sec.):
0.000008
Raw Match Pattern:
0[2349]{1}\\-[1-9]{1}[0-9]{6}
Match Pattern Explanation:
The regular expression:
(?-imsx:0[2349]{1}\\-[1-9]{1}[0-9]{6})
matches as follows:
  
NODE                     EXPLANATION
----------------------------------------------------------------------
(?-imsx:                 group, but do not capture (case-sensitive)
                         (with ^ and $ matching normally) (with . not
                         matching \n) (matching whitespace and #
                         normally):
----------------------------------------------------------------------
  0                        '0'
----------------------------------------------------------------------
  [2349]{1}                any character of: '2', '3', '4', '9' (1
                           times)
----------------------------------------------------------------------
  \\                       '\'
----------------------------------------------------------------------
  -                        '-'
----------------------------------------------------------------------
  [1-9]{1}                 any character of: '1' to '9' (1 times)
----------------------------------------------------------------------
  [0-9]{6}                 any character of: '0' to '9' (6 times)
----------------------------------------------------------------------
)                        end of grouping
----------------------------------------------------------------------
Matches Found:
NO MATCHES.