How do I select a procedure written in classic asp with regular expression. For example:
Sub SubName
'sub implementation having multi line statements. It may have comments also.
End Sub
How do I select the multi line procedure using the regular expression?
My objective: To obtain all the procedure listed in all ASP pages within a specified folder and merge it in one file. So I am searching for a regular expression that will yield procedures which I can collect and append in one file for debugging purposes.