Bascom uses a special format to comment out blocks of code. I want a RegEx that matches this block to be used in SyntaxHighlighter.
These comment blocks starts with '( and ends with '). Yep, it's so stupid.
Example input:
    bla
    '(
    test
    test
    ')
    blubb
I tried: '\(.*?\)' and many others without success.
Expected return after replace:
    bla
    #####
    blubb
where ##### is the replacement.
Basically just like C++ & similar /* .. */ rule. But I can't get it working.
Thanks in advance!
 
     
    