I know that the title is quite vague but I'm gonna explain what I'm looking for.
I have to analyze a lot of data from various sources and I'd like to check if a value can be interpreted as a numeric value. I know there are regex and all but, the thing is that I have a lot of number formatted in various way, depending on where they come from :
- english number : 123,456.123
- french number : 123 456,123
- spanish number : 123.456,123
- swiss number : 123'456.123
I'm looking for a library able to analyze those String and return either the numeric value or the corresponding pattern. It would save me a lot of time !
Thank's