我试图检查一个字符串是否包含数值,如果它没有返回标签,如果它然后我想显示主窗口。怎么办呢?
If (mystring = a numeric value)
//do this:
var newWindow = new MainWindow();
newWindow.Show();
If (mystring = non numeric)
//display mystring in a label
label1.Text = mystring;
else return error to message box
答案 0 :(得分:6)
使用TryParse。
double val;
if (double.TryParse(mystring, out val)) {
..
} else {
..
}
这适用于直接转换为数字的字符串。如果你需要担心像$这样的东西,那么你还需要做更多的工作来清理它。
答案 1 :(得分:5)
Int32 intValue;
if (Int32.TryParse(mystring, out intValue)){
// mystring is an integer
}
或者,如果是十进制数字:
Double dblValue;
if (Double.TryParse(mystring, out dblValue)){
// mystring has a decimal number
}
一些例子,BTW,可以是found here。
Testing foo:
Testing 123:
It's an integer! (123)
It's a decimal! (123.00)
Testing 1.23:
It's a decimal! (1.23)
Testing $1.23:
It's a decimal! (1.23)
Testing 1,234:
It's a decimal! (1234.00)
Testing 1,234.56:
It's a decimal! (1234.56)
我测试了几个:
Testing $ 1,234: // Note that the space makes it fail
Testing $1,234:
It's a decimal! (1234.00)
Testing $1,234.56:
It's a decimal! (1234.56)
Testing -1,234:
It's a decimal! (-1234.00)
Testing -123:
It's an integer! (-123)
It's a decimal! (-123.00)
Testing $-1,234: // negative currency also fails
Testing $-1,234.56:
答案 2 :(得分:2)
double value;
if (double.tryParse(mystring, out value))
{
var newWindow = new MainWindow();
newWindow.Show();
}
else
{
label1.Text = mystring;
}
答案 3 :(得分:0)
您可以简单地引用Microsoft.VisualBasic.dll,然后执行以下操作:
if (Microsoft.VisualBasic.Information.IsNumeric(mystring))
{
var newWindow = new MainWindow();
newWindow.Show();
}
else
{
label1.Text = mystring;
}
VB实际上表现更好,因为它不会为每次失败的转换抛出异常。
答案 4 :(得分:0)
您可以使用布尔值来判断字符串是否包含数字字符。
public bool GetNumberFromStr(string str)
{
string ss = "";
foreach (char s in str)
{
int a = 0;
if (int.TryParse(Convert.ToString(s), out a))
ss += a;
}
if ss.Length >0
return true;
else
return false;
}
答案 5 :(得分:0)
尝试将Label的标题添加到字符串中
使用Int.TryParse()
方法来确定文本是整数还是字符串。如果是,则该方法将返回true,否则返回false。代码如下:
if (Int.TryParse(<string> , out Num) == True)
{
// is numeric
}
else
{
//is string
}
如果转换成功,Num将包含您的整数值
答案 6 :(得分:0)
可以在以下位置找到执行此操作的方法的一个很好的示例:http://msdn.microsoft.com/en-us/library/f02979c7.aspx
甚至有些代码几乎完全符合您的要求。如果您期望整数值,可以使用Int32.TryParse(字符串)。如果您预期双打,请使用Double.TryParse(string)。