gpt4 book ai didi

c# - csharp 方法单词的第一个和最后一个字母

转载 作者:行者123 更新时间:2023-11-30 13:20:23 26 4
gpt4 key购买 nike

我有方法,它有参数“word”返回 Word 第一个字母和字符串的最后一个字母。第一个和最后一个字母之间有三点。例如,当您编写“stackoverflow”时,它会像“s...w”那样返回它

我有这个代码,但我不会工作。

namespace stackoverflow
{
class Program
{
static void Main(string[] args)
{
string word = "stackoverflow";
string firsLast = FirsLast(word);
Console.WriteLine(firsLast);
Console.ReadKey();
}

private static string FirsLast(string word)
{
string firsLast = "...";
for (int i = 0; i < word.Length; i += 2)
{
firsLast += word.ElementAt(i);
}
return firsLast;
}
}
}

最佳答案

为什么不

if (word.Length >= 2)
{
return word[0] + "..." + word[word.Length - 1];
}

关于c# - csharp 方法单词的第一个和最后一个字母,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8531657/

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