gpt4 book ai didi

c# - 获取字符串一部分的有效方法

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

我有一个由 prefixtype 和 name 组成的名称,我想检索 name 部分。

Prefix 始终保持不变,但 Type 可以更改。

我有以下代码来获取名称部分:

            string prefix = "Prefix-";
string str =prefix + "Type-hello-j---.xml";
str = Path.GetFileNameWithoutExtension(str);
str = str.Substring(prefix.Length);
str = str.Substring(str.IndexOf('-') + 1);

在上面的例子中,名称部分是:hello-j---在 C# 中是否有任何有效/更好的方法来做同样的事情?

最佳答案

您可以使用 overload of string.Split() that lets you specify the number of parts :

string fileName = "Prefix-Type-hello-j---.xml"; 
string withoutExtension = Path.GetFileNameWithoutExtension(str);
var parts = str.Split(new[]{'-'}, 3);
string name = parts[2];

关于c# - 获取字符串一部分的有效方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14662520/

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