I'm looking regex that not include the beginning string (this part I get fine) and exclude the final string that sometimes has a number xxx,xx or has two numbers xxx,xx xxx,xx (see the image).
But my expression - (?<=[0-3][0-9] [0-1][0-9] [2][2-9] 7[\d]{3} ).*(?= [\d]{1,5},[\d]{2} ?([\d]{1,5},[\d]{2})?)
fails in case like this:
23 06 22 7314 VIAJES EL CORTE INGL 13389,00 5357,15
I can not exclude 13389,00
. Can somebody help me?
See my regex playground.