On 10 Jan 2024 10:00:57 GMT, Bob Eager wrote: > Personally, I think regexps are overrated! And I first started using > them in 1975. How about starting with a simple thing, like being able to treat multiple separators as one: re.split(r"\s+", "the quick brown fox") giving ['the', 'quick', 'brown', 'fox']