In C#, I'm trying to convert a string to decimal.
For example, the string is "(USD 92.90)"
How would you parse this out as a decimal with Decimal.Parse fcn.
|
In C#, I'm trying to convert a string to decimal. For example, the string is "(USD 92.90)" How would you parse this out as a decimal with Decimal.Parse fcn. |
|||
|
|
I'm going on the assumption here that the string you're trying to parse is an actual currency value.
|
|||||||||||||
|
|
You could start off with a reg-exp to extract the number part and then use Decimal.TryParse to parse the sub-string. |
||||
|
|
|
First, get the number out of the string. A Regex Then use Decimal.Parse (or Double.Parse) on that string. |
|||
|
|
|
When parsing strings, I always prefer to use TryParse to avoid exceptions being thrown for invalid strings:
And as others have said, first use a regular expression to extract just the numerical part. |
|||
|
|