gpt4 book ai didi

java - 字符串交替字母

转载 作者:行者123 更新时间:2023-11-30 06:36:06 29 4
gpt4 key购买 nike

我正在尝试编写一段代码,向用户请求两个字符串。我如何编写代码,以便通过交替两个字符串的字符来形成一个新的字符串。

感谢任何帮助

最佳答案

简单的“愚蠢”方法:)

 class StringMerge
{
public static String merge(String a, String b)
{
if (a == null || a.length() == 0){ return b; }
else if(b == null || b.length() == 0){ return a; }
else
{
StringBuffer merged = new StringBuffer();
int aIndex = 0;
int bIndex = 0;
while(aIndex < a.length() && bIndex < b.length())
{
merged.append(a.charAt(aIndex));
merged.append(b.charAt(bIndex));

aIndex++;
bIndex++;
}
while(aIndex < a.length())
{
merged.append(a.charAt(aIndex));
aIndex++;
}
while(bIndex < b.length())
{
merged.append(b.charAt(bIndex));
bIndex++;
}

return merged.toString();
}
}
}

关于java - 字符串交替字母,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5208163/

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