gpt4 book ai didi

c# - 我如何仅从项目中解析数字并将数字放入 int 变量中?

转载 作者:太空宇宙 更新时间:2023-11-03 21:31:56 24 4
gpt4 key购买 nike

private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
item = comboBox1.SelectedIndex.ToString();
}

在这种情况下执行 SelectedIndex 时 item = "0"然后我在做:

CreateMainDirectory(int.Parse(item));

所以在 CreateMaindirectory 中数字是 0。但是 comboBox 中的第一个索引/项目是:

"Reduced by: 10"

所以我想解析数字 10。所以在 CreateMainDirectory 中应该是数字 10。

如果我在做:

private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
item = comboBox1.SelectedItem.ToString();
}

那么项目是:“减少了:10”

如果我使用 SelectedIndex 和/或 SelectedItem,我该如何解析数字 10?

最佳答案

item = new string(item.Where(char.IsDigit).ToArray());

或者:

item = item.Split().Last();

如果数字总是在字符串的末尾。

关于c# - 我如何仅从项目中解析数字并将数字放入 int 变量中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23714993/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com