gpt4 book ai didi

c# - C#中如何从特定字符串中获取子字符串

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

我有

string filepath = @"F:\first_folder\Node3_V_1.3";

我有一个名为 version_check 的按钮

点击这个按钮我想打印消息:

upgrading node3 to version 1.3

详细信息是从字符串 filepath 中获取的。我如何在 C# 中对此进行编码。

最佳答案

你可以这样做

version_check.Click += version_check_Click;  //subscription of the event

public void version_check_Click(object sender, EventArgs e)
{
string filepath = @"F:\first_folder\Node3_V_1.3";
var name = Path.GetFileName(filepath).Split(new[] {'_', 'V'}, StringSplitOptions.RemoveEmptyEntries);
if (name.Length < 1)
{
MessageBox.Show("Failed to update");
return;
}
MessageBox.Show(string.Format("Upgrading {0} to version {1} ...", name[0], name[1]));
}

调试信息:

enter image description here

关于c# - C#中如何从特定字符串中获取子字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32669696/

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