I have a string: a = '*1357*0123456789012345678901234567890123456789*2468*'
I want to find a value between 1357 and 2468 which is 0123456789012345678901234567890123456789.
I want to use regex or easier method to extract the value.
I tried re.findall(r'1357\.(.*?)2468', a), but I don't know where I'm doing wrong.