Hy everyone,
i have a problem with regex. I would like to match all the words that start with 240 and end when matching 10 for the first time. The problem happens when 10 is repeat.I'm using this regex to solve this problem:
(^240+)(.*?10)
Unfortunatly for my date this regex is not support. For example my regex works with value of 240189102710437108 and extract correctly the date of 24018910 but does not work for the value of 240110102712237180 because the value is 1010. i Would like that the regex extract the value beetween 240 and 10 but get the last occurences of 10.
I hope you could help to solve this problem