I thought I understood C# regular expressions, but clearly it's not the case. I need some help devising an expression that would find everything from START|BEGIN until )). Expression can be multi line.
Ex.
START( FTP_STATE, XXX(
VAL( FTP_INITIAL_STATE, 0 )
VAL( FTP_INBOUND, 1 )
AL( FTP_OUTBOUND, 2 )
))
/**************************************************************/
BEGIN( FTP_TIMER_MODE, YYY(
VAL( FTP_REMOVE_TIMER, 0 )
VAL( FTP_NOT_REMOVE_TIMER, 1 )
))
/**************************************************************/
Any help greatly appreciated