I want to find a regex that matches all the following strings:
-5,84;;EUR
2.764,90;EUR
-47;;EUR
This regex -?\d+\,?\d+;{1,2}\s*EUR doesn't find the 2. in 2.764,90;EUR, whereas this one -?\d+?[.]\d+\,?\d+;{1,2}\s*EUR only finds the 2.764,90;EUR.
Try:
Regex Demo