Yet another RegEx question. I have a file that sometimes contains this exact set:
Code:ExceptionData = {
}
I'm trying to make it so if either of those exactly match, to remove them from the string since it causes an error if they contain no data between the { }.Code:ErrorMsgs = {
}
I tried a few different methods, but I can seem to match it because the } is on a new line.
Any ideas?
