有没有办法在字符串中交换字符位置?例如,如果我有"03/02"
,我需要"02/03"
。
任何帮助表示赞赏!
答案 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)
#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);
}