C#实现将千分位字符串转换成数字的方法
更新时间:2014年08月04日 15:14:25 投稿:shichen2014
这篇文章主要介绍了C#实现将千分位字符串转换成数字的方法,很适合初学者更好的理解C#字符串原理,需要的朋友可以参考下
本文实例主要实现了C#将千分位字符串转换成数字的方法,对C#初学者而言有一定的借鉴价值,主要内容如下:
主要功能代码如下:
/// <summary>
/// 将千分位字符串转换成数字
/// 说明:将诸如"–111,222,333的千分位"转换成-111222333数字
/// 若转换失败则返回-1
/// </summary>
/// <param name="thousandthStr">需要转换的千分位</param>
/// <returns>数字</returns>
public static int ParseThousandthString(this string thousandthStr)
{
int _value = -1;
if (!string.IsNullOrEmpty(thousandthStr))
{
try
{
_value = int.Parse(thousandthStr, NumberStyles.AllowThousands | NumberStyles.AllowDecimalPoint | NumberStyles.AllowLeadingSign);
}
catch (Exception ex)
{
_value = -1;
Debug.WriteLine(string.Format("将千分位字符串{0}转换成数字异常,原因:{0}", thousandthStr, ex.Message));
}
}
return _value;
}
单元测试如下:
[TestMethod()]
public void ParseThousandthStringTest()
{
string _thousandthStr = "-111,222,333";
int _expected1 = -111222333;
int _actual1 = StringToolV2.ParseThousandthString(_thousandthStr);
Assert.AreEqual(_expected1, _actual1);
}
感兴趣的读者可以自己测试一下,希望对大家学习C#有所帮助!
相关文章
c# Process.Start()找不到系统文件的解决方法
vs1027在X64应用程序下执行process.start()时,OK;但是在X86应用程序下执行process.start(),报错:找不到系统文件,本文就详细的介绍一下解决方法,感兴趣的可以了解一下2023-09-09


最新评论