Say I have a string
"Hello! How do you do? Good day!"
and I want to split it, with my delimiters being: ?
and !
using the "split" function the result would be:
`[Hello, How do you do, Good day]`
However, I want it to be:
`[Hello, !, How do you do, ?, Good day, !]`