gpt4 book ai didi

c# - C#如何检查字符串中重复的字母

转载 作者:太空狗 更新时间:2023-10-30 00:01:32 24 4
gpt4 key购买 nike

我正在创建一个程序来检查字符串中重复的字母。

例如:

wooooooooooow
happpppppppy

这是我的代码:

 string repeatedWord = "woooooooow";
for (int i = 0; i < repeatedWord.Count(); i++)
{
if (repeatedWord[i] == repeatedWord[i+1])
{
// ....
}
}

代码有效,但它总是会出错,因为最后一个字符 [i + 1] 为空/null。

The error is Index was outside the bounds of the array.

有什么解决办法吗?

最佳答案

运行循环直到 repeatedWord.Count()-1

关于c# - C#如何检查字符串中重复的字母,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18133022/

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