C ++字符串交换字符的位置

时间:2011-11-19 17:55:59

标签: c++ string swap

有没有办法在字符串中交换字符位置?例如,如果我有"03/02",我需要"02/03"。 任何帮助表示赞赏!

4 个答案:

答案 0 :(得分:23)

不确定

#include <string>
#include <algorithm>

std::string s = "03/02";
std::swap(s[1], s[4]);

答案 1 :(得分:3)

std::swap(str[1], str[4]);

答案 2 :(得分:2)

有。 :)

std::swap(str[i], str[j])

答案 3 :(得分:-3)

等等,你真的想要这样一个具体的答案吗?你不关心字符串是2/3而不是02/03吗?

#include <string.h>
#include <iostream>

bool ReverseString(const char *input)
{
    const char *index = strchr(input, (int) '/');
    if(index == NULL)
        return false;

    char *result = new char[strlen(input) + 1];

    strcpy(result, index + 1);
    strcat(result, "/");
    strncat(result, input, index - input);

    printf("%s\r\n", result);
    delete [] result;

    return true;
}

int main(int argc, char **argv)
{
    const char *test = "03/02";
    ReverseString(test);
}