Closed
Description
Description
One limitation of this very cool feature is that if you put a :
in your regex, anything from the colon on will be ignored (and there is no way to escape the colon).
Possible Solution
Use str.partition()
rather than str.split()
here (and make the corresponding changes this entails).
Additional context
No response
Additional context
No response