I'm trying to do something similar to this but cant get it working.
How to split a comma separated String while ignoring escaped commas?
I have tried to figure it out but cant seem to get it right.
I would like to split the string on : but not the escaped one \\:
(my escape char is a double slash)
given: dtet:du\\,eduh ei\\:di:e,j
expected outcome: ["dtet"] ["du\\,eduh ei\\:di][e,j"]
regex link: https://regex101.com/r/12j6er/1/