一、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#字符串转换为数字的4种方法
判断C#中的字符串是否是数字,如果是转换成int类型。
1.通过正则表达式(可以判断正数和负数)
复制代码 代码示例:
public int IsNumeric(string str)
{
int i;
if(str != null && System.Text.RegularExpressions.Regex.IsMatch(str,@"^-?d+$"))
i = int.Parse(str);
else
i = -1;
return i;
}
2.通过字符实现转换
复制代码 代码示例:
/// <summary>
/// 判断是否是数字
/// </summary>
/// <param name="number"></param>
/// <returns></returns>
private bool IsNumeric(string number)
{
try
{
for(int i=0;i<number.Length;i++)
{
if(number<&#39;0&#39;||number>&#39;9&#39;)
{
return false;
}
}
return true;
}
catch
{
return false;
}
}
3.通过char.IsNumber方法
复制代码 代码示例:
/// 判断是否是数字
/// </summary>
/// <param name="number"></param>
/// <returns></returns>
private bool IsNumeric(string number)
{
try
{
for(int i=0;i<number.Length;i++)
{
if(!char.IsNumber(number,i))
{
return false;
}
}
return true;
}
catch
{
return false;
}
}
4.通过try,catch()进行字符串转换
复制代码 代码示例:
/// 判断是否是数字
/// </summary>
/// <param name="number"></param>
/// <returns></returns>
private bool IsNumeric(string number)
{
try
{
int.Parse(number);
return true;
}
catch
{
return false;
}
}
附,C#判断字符串是否为数字字符串的方法。
在进行C#编程时,需要判断一个字符串是否是数字字符串,可以通过以下两种方法来实现。
方法一:使用 try{} catch{} 语句。
可以在try语句块中试图将string类型的字符串变量转换为int类型,如果该字符串不是数字字符串则会抛出异常,这时在catch语句块中就能捕获异常。
一旦发现异常,则不是数字字符串。
可以以下三种方式将string类型转换为int类型。
1、int.Parse(string);
2、Convert.ToInt16(string); //当数字字符串的位数大于4的时候请使用Convert.ToInt32()
3、Convert.ToInt32(string);
添加一个文本框TextBox1,和一个按钮Button1,当点击按钮时,判断文本框中的内容是否为数字字符串,是的话则输出转换后的数值。
代码:
复制代码 代码示例:
protected void Button1_Click(object sender, EventArgs e)
{
string message = TextBox1.Text.Trim();
int result;
if(isNumberic(message,out result))
{
string tt="<mce:script type="text/
javascript"><!--
alert('匹配成功,转换后的整数为"+result+"')
// --></mce:script>";
Page.ClientScript.RegisterStartupScript(this.GetType(), "", tt);
}
else
Page.ClientScript.RegisterStartupScript(this.GetType(), "", "<mce:script type="text/javascript"><!--
alert('匹配失败!')
// --></mce:script>");
}
protected bool isNumberic(string message,out int result)
{
//判断是否为整数字符串
//是的话则将其转换为数字并将其设为out类型的输出值、返回true, 否则为false
result = -1;//result 定义为out 用来输出值
try
{
//当数字字符串的为是少于4时,以下三种都可以转换,任选一种
//如果位数超过4的话,请选用Convert.ToInt32() 和int.Parse()
//result = int.Parse(message);
//result = Convert.ToInt16(message);
result = Convert.ToInt32(message);
return true;
}
catch
{
return false;
}
}
上述方法可以将int改为double,如 double.Parse(),这样就可以判断是否为浮点数字符串
方法二:通过正则表达式来判断。
用正则表达式来验证字符串是否为数字字符串。
要用到Regex类的isMatch()方法。
该类在System.Text.RegularExpressions;
可以通过using System.Text.RegularExpressions;导入命名空间来访问Regex类。
也可以直接通过System.Text.RegularExpressions.Regex 来访问。
代码:
复制代码 代码示例:
protected bool isNumberic(string message,out int result)
{
System.Text.RegularExpressions.Regex rex=
new System.Text.RegularExpressions.Regex(@"^/d+$");
result = -1;
if (rex.IsMatch(message))
{
result = int.Parse(message);
return true;
}
else
return false;
}
通过正则表达式判断是否匹配,不仅可以用来做简单的判断匹配,还可以进行精确的匹配,如判断是否是六位的数字字符串,Email匹配等。
正则表达式是一种很好的方法。
代码:
复制代码 代码示例:
protected void Button1_Click(object sender, EventArgs e)
{
string message = TextBox1.Text.Trim();
isNumeric(message); //判断字符串是否为5为整数字符串
}
protected void isNumeric(string message)
{
if (message != "" && Regex.IsMatch(message, @"^/d{5}$"))
{
//成功
Page.ClientScript.RegisterStartupScript(this.GetType(), "", "<mce:script type="text/javascript"><!--
alert('匹配通过!确实是五位的整数字符串')
// --></mce:script>");
}
else
//失败
Page.ClientScript.RegisterStartupScript(this.GetType(), "", "<mce:script type="text/javascript"><!--
alert('匹配失败!')
// --></mce:script>");
}
说明:
@"(^[0-9]{6}$)|(^[0-9]{7}$)" : 可以判断长度是6位或者7位的整数字符串。