Need to split something like 1-(a+b-b-d)*100 into 1, a+b-b-d, 100
I tried (\+|-|\*|\/) which will split the string into 1 (a b b d) 100
Need to split something like 1-(a+b-b-d)*100 into 1, a+b-b-d, 100
I tried (\+|-|\*|\/) which will split the string into 1 (a b b d) 100
regular expression pattern:
Go Playground