Do link (insira o padrão no campo Match pattern
e verifique se você marcou Explain
. e clique em < kbd> Submit ):
----------------------------------------------------------------------
( group and capture to :
----------------------------------------------------------------------
<form '<form'
----------------------------------------------------------------------
[^\a]* any character except: '\a' (alarm) (0 or
more times (matching the most amount
possible))
----------------------------------------------------------------------
</form> '</form>'
----------------------------------------------------------------------
| OR
----------------------------------------------------------------------
<FORM '<FORM'
----------------------------------------------------------------------
[^\a]* any character except: '\a' (alarm) (0 or
more times (matching the most amount
possible))
----------------------------------------------------------------------
</FORM> '</FORM>'
----------------------------------------------------------------------
) end of
----------------------------------------------------------------------
'\r\n'
----------------------------------------------------------------------
( group and capture to :
----------------------------------------------------------------------
method=" 'method="'
----------------------------------------------------------------------
[a-zA-Z]* any character of: 'a' to 'z', 'A' to 'Z'
(0 or more times (matching the most
amount possible))
----------------------------------------------------------------------
| OR
----------------------------------------------------------------------
METHOD=" 'METHOD="'
----------------------------------------------------------------------
[a-zA-Z]* any character of: 'a' to 'z', 'A' to 'Z'
(0 or more times (matching the most
amount possible))
----------------------------------------------------------------------
) end of
----------------------------------------------------------------------
'\r\n'
----------------------------------------------------------------------
) end of grouping
----------------------------------------------------------------------