I need to do a number check for the specified string. The problem is that a string can be a large number , more than any numeric type in C # can represent, so I cannot use TryParse functions because they will only give information about whether they can convert to these types.
It should take into account the - / +, delimiter and current culture settings.
I found some solutions using regular expressions, but they all miss some details. And I'm not good at regular expressions
source share