is there a way in Swift to split a String via RegEx?
Example:
Given String: "Hello?00it's me?01and I love?02you my Darling"
Wanted Array: ["Hello", "it's me", "and I love", "you my Darling"]
So I want to split the string by "?01", "?02", and so on
The RegEx would be "\?[0-9]{2}"