在 c#.net 中按 2 对反转字符串
Reverse string by 2 pair in c#.net
两对反转意味着例如:我们有一个字符串 "helloworld" 我们需要以 returns "ehllworodl" 的方式输出。我们可以看到它反转并连接输出的每一对。
试试这个
string input = "helloworld";
string output = "";
for (int i = 0; i < input.Length - 1; i += 2)
{
output += input[i + 1];
output += input[i];
}
两对反转意味着例如:我们有一个字符串 "helloworld" 我们需要以 returns "ehllworodl" 的方式输出。我们可以看到它反转并连接输出的每一对。
试试这个
string input = "helloworld";
string output = "";
for (int i = 0; i < input.Length - 1; i += 2)
{
output += input[i + 1];
output += input[i];
}