Having a list containing values with special characters in between:
myLst = ['5-8','20130-23199','1025-2737']
How do you extract the values with the - in between, without using regex?
I "solved" this with regex but it is very slow with huge numbers.