本文介绍了格式化数字 - 括号中的负数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要一个能转换的功能: -

1)($ 1.25)至-1.25

2)$ 1.25至1.25

待办事项进一步的基本数学计算比如Addition。



我尝试过使用System.Text.RegularExpressions.Regex()和System.String .Format(),但没有运气。请帮助。

I need a function which converts:-
1) ($1.25) to -1.25
2) $1.25 to 1.25
To do further basic mathematical calculation. like Addition.

I have tried using System.Text.RegularExpressions.Regex() and System.String .Format(),but no luck.Please help.

推荐答案



decimal.Parse("(€1,25)", System.Globalization.NumberStyles.Currency);



货币标识符和小数点符号通过区域设置信息控制。


The currency identifier and the decimal point symbol are controlled via locale information.


这篇关于格式化数字 - 括号中的负数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-12 05:33