Regex for math expression
问题 I have some issue with C++ regex, and hope someone could offer some help. :) Currently, base on the "rxAssign" as shown below, I am able to detect math expression that look like: x = x; x = a + 3 * 90 - b; x = 4; } x = a + 3 * 90 - b; }} However, I need some changes to be able to accept open round bracket "(" and close round bracket ")" for math expression such as: x = (x); x = a + ((3 * 90) - b); x = 4; } x = (((a + 3) * 90) - b); }} Is there anyway I can edit my current implementation to