We tried many forms of regular expressions in this answer. Our input string is
"string1 & string2 / string3"
and we would like to split it into the string into
{"string1","string2","string3"}
on the delimiters &
and /
(with one space of padding for each).
How can we construct a regular expression to do this using string.split(" [/&] ")
?