RESULTS:
Execution Time(sec.):
0.000003
Raw Match Pattern:
\\(\\d{1,3}\\) ([\\s\\S]*?)(\\.END|\\(\\d{1,3}\\))
Match Pattern Explanation:
The regular expression:
(?-imsx:\\(\\d{1,3}\\) ([\\s\\S]*?)(\\.END|\\(\\d{1,3}\\)))
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):
----------------------------------------------------------------------
\\ '\'
----------------------------------------------------------------------
( group and capture to \1:
----------------------------------------------------------------------
\\ '\'
----------------------------------------------------------------------
d{1,3} 'd' (between 1 and 3 times (matching the
most amount possible))
----------------------------------------------------------------------
\\ '\'
----------------------------------------------------------------------
) end of \1
----------------------------------------------------------------------
' '
----------------------------------------------------------------------
( group and capture to \2:
----------------------------------------------------------------------
[\\s\\S]*? any character of: '\\', 's', '\\', 'S'
(0 or more times (matching the least
amount possible))
----------------------------------------------------------------------
) end of \2
----------------------------------------------------------------------
( group and capture to \3:
----------------------------------------------------------------------
\\ '\'
----------------------------------------------------------------------
. any character except \n
----------------------------------------------------------------------
END 'END'
----------------------------------------------------------------------
| OR
----------------------------------------------------------------------
\\ '\'
----------------------------------------------------------------------
( group and capture to \4:
----------------------------------------------------------------------
\\ '\'
----------------------------------------------------------------------
d{1,3} 'd' (between 1 and 3 times (matching
the most amount possible))
----------------------------------------------------------------------
\\ '\'
----------------------------------------------------------------------
) end of \4
----------------------------------------------------------------------
) end of \3
----------------------------------------------------------------------
) end of grouping
----------------------------------------------------------------------
Matches Found:
NO MATCHES.