I am trying to get the number 1.039,08180600 with regex but there is numbers like 15.623,77056789 in the string.
I used ([0-9]?)(\.?)([0-9]{3},[0-9]{8}) to get the x.xxx,xxxxxxxx.
Is there a way to do it? And is there a better way to write the regex I am using?