Regex is still a pain for me, I need to match any whitespace outside double quotas, how can I match the first two here?
t
Tobias Berger
09/20/2021, 2:59 PM
I don't think that's something regex can really do on its own. I guess you will probably need to somehow separate the quoted oarts of your string from the rest first and then do your search for whitespaces only where you want to find them.