C# 判断字符串是否为数字
时间: 2024-09-08 19:02:21 浏览: 62
在 C# 中,你可以使用 `int.TryParse()` 或 `double.TryParse()` 方法来判断一个字符串是否能转换为整数或浮点数,如果转换成功则说明该字符串是数字。这两个方法会尝试将字符串转换为指定类型的数值,并返回一个布尔值表示转换是否成功以及结果存储在(out参数)中。
例如:
```csharp
string str = "123";
bool isNumericInteger;
if (int.TryParse(str, out isNumericInteger))
{
if(isNumericInteger)
Console.WriteLine("字符串是数字");
else
Console.WriteLine("字符串不是整数");
}
bool isNumericDouble;
if (double.TryParse(str, out isNumericDouble))
{
if(isNumericDouble)
Console.WriteLine("字符串是数字");
else
Console.WriteLine("字符串不是双精度数字");
}
```
如果字符串既包含整数部分又包含小数部分,`double.TryParse()` 将起作用。如果只包含整数部分,`int.TryParse()` 即可。
注意,这些方法只能检查是否可以转换成数字,不能确定其有效性,比如非数字字符如“abc”会被视为非数字。
相关问题
C# 判断字符串是否为数字
可以使用 C# 中的 TryParse 方法来判断字符串是否为数字。具体实现如下:
```
string str = "123";
int num;
bool isNumeric = int.TryParse(str, out num);
if (isNumeric)
{
Console.WriteLine("是数字");
}
else
{
Console.WriteLine("不是数字");
}
```
C#判断字符串是否为数字
在C#中,有多种方法可以判断一个字符串是否为数字:
1. 使用Char.IsDigit()方法和Enumerable.All()方法:
```C#
public bool isPureNum(string str)
{
if (str == null || str.Length == 0)
{
return false;
}
bool isNumeric = str.All(char.IsDigit);
return isNumeric;
}
```
2. 使用Regex.IsMatch()方法和正则表达式:
```C#
public bool isPureNum(string str)
{
if (str == null || str.Length == 0)
{
return false;
}
bool isNumeric = System.Text.RegularExpressions.Regex.IsMatch(str, @"^\d$");
return isNumeric;
}
```
3. 使用ASCII码判断:
```C#
public bool isPureNum(string str)
{
if (str == null || str.Length == 0)
{
return false;
}
byte[] strBytes = Encoding.ASCII.GetBytes(str);
foreach (byte strByte in strBytes)
{
if (strByte < 48 || strByte > 57)
{
return false;
}
}
return true;
}
```
4. 使用TryParse()方法:
```C#
public bool isPureNum(string str)
{
if (str == null || str.Length == 0)
{
return false;
}
int num;
bool isNumeric = int.TryParse(str, out num);
return isNumeric;
}
```
阅读全文