I have a long string of data which looks like:
dstgfsda12345.123gsrsvrvsdfcsd23456.234tsrsd
Notice that the '12345.123' pattern is the same. I want to split the string on it using python (so s.split(<regex>)).
What would be the appropriate regex?
'[0-9]{5}.[0-9]{3}'
does not work; I presume it expects whitespace around it(?).