What is the most rusty/current way in (latest Rust) to do a basic and efficient string slit using multiple different possible split characters, i.e. convert:
["name, age. location:city"]
into:
["name", "age", "location", "city"]
I understand that we could use a regexp to do this, but this code will be used in log processing and is used on a computer that is cpu/memory bound so I'd prefer to avoid regexp if possible.