I have a string:
String str = \"a + b - c * d / e < f > g >= h <= i == j\";
I want to split the string on all of the operators
You could split on a word boundary with \b