I'm trying to get all letters in a string. But, sometimes, it matches two letters as one match, causing problems.
I think these strings that I'm using have invisible characters in them that are messing things up. Here is one of the strings I was using: "s͏uc͏͏ce͏͏s͏s". If you put that in https://regexr.com/ with ([a-zA-Z])+, it will mark "uc" and "ce" as individual matches. How do I get it to match each character as an individual?