I would like to know whether there is any method in C# that takes out all the content of a string until the first number is encountered. Example:
string myString = "USD3,000";
myString = SomeMethod(myString, [someparameters]);
myString -> "3,000"
|
I would like to know whether there is any method in C# that takes out all the content of a string until the first number is encountered. Example:
| |||||||
feedback
|
|
Not inbuilt, but you could just use either a regex, or
or
| |||||||||||||||||||
feedback
|
|
I don't think there are any built-in string methods to do that. However you can tweak the code given in the below post and modify it to achieve what you want: | |||
|
feedback
|
|
You can do it with Regular Expressions.
| |||||||
feedback
|
Output:
Should match decimal and integer number with or without thousand separators and with or without maximum of 3 decimal places. | |||||
feedback
|