How do I get awk to split a string after/before a certain character?
For example, if I have the string "9+(8+9+(6+4))", I want awk to split it into "9+", "(8+9+", "(6+4)", ")".... that is, I want awk to split the string BEFORE an open parenthesis, and AFTER a close parenthesis.
How would I...