Hello dear forum,
I’m evaluating sublime text, and wanted to use so regexp.
It functionned really good so far, except for one expression that is making me crazy.
I does not pretend that my regex is fully valid, but it looks really strange. I’m using sublime text 3 build 3083 on a mac.
data sample:
<Object><field>mytextdataA</field></Object><Object><field>mytextdataB</field></Object><Object><field>mynumericdata1235</field></Object>
when using this regex:
<Object>.+?mytextdataA.+?</Object>
The following is selected, what looks fine to me :
<Object><field>mytextdataA</field></Object>
If now wanting to a numeric data data, with this regex :
<Object>.+?123.+?</Object>
the whole line is then selected :
<Object><field>mytextdataA</field></Object><Object><field>mytextdataB</field></Object><Object><field>mynumericdata1235</field></Object>
Is it know that the lazy identifier is not functionning as soon as there are near numeric values ?
is it a mistake on my side ? is it a problem on the regex parser ?
any advice more than welcomed