Can regular expressions be used to match nested patterns? [duplicate]
问题 This question already has answers here : Regular expression to match balanced parentheses (17 answers) Closed 9 months ago . Is it possible to write a regular expression that matches a nested pattern that occurs an unknown number of times? For example, can a regular expression match an opening and closing brace when there are an unknown number of open/close braces nested within the outer braces? For example: public MyMethod() { if (test) { // More { } } // More { } } // End Should match: { if