I'm having some trouble to remove block of comments that looks like this:
//JR-0001-//
//iErr := 0;
// IF NOT TSUtil.ReadStatementTransactions(TRUE,iErr) THEN BEGIN
// IF (iErr <> 0) THEN BEGIN
// IF NOT PosConfirm(Text223,FALSE) THEN
// EXIT;
// END;
//END;
//JR-0001+//
JR-0001-: this is the beginning of a comment block
JR-0001+: this is the end of a comment block
I was able to remove single line comments (that starts with "//JR-", but I'm stuck with removing a block of comments.
Any help is appreciated.