您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
这篇文章主要介绍了C++中的字符替换方法有哪些的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇C++中的字符替换方法有哪些文章都会有所收获,下面我们一起来看看吧。
代码示例:
#include <algorithm> // ... std::string str = "Hello, World!"; std::replace(str.begin(), str.end(), 'o', 'O'); // str 现在为 "HellO, WOrld!"
std::string str = "Hello, World!"; for (char& c : str) { if (c == 'o') { c = 'O'; } } // str 现在为 "HellO, WOrld!"
#include <regex> // ... std::string str = "Hello, World!"; std::string result = std::regex_replace(str, std::regex("o"), "O"); // result 现在为 "HellO, WOrld!"
可以使用 C++ 的字符串流(stringstream)来实现字符串的替换。下面是一个例子:
#include <sstream> #include <string> std::string replace(std::string str, const std::string& from, const std::string& to) { std::stringstream ss; size_t start_pos = 0; while ((start_pos = str.find(from, start_pos)) != std::string::npos) { ss << str.substr(0, start_pos) << to; start_pos += from.length(); str = str.substr(start_pos); } ss << str; return ss.str(); } int main() { std::string str = "Hello, World!"; std::string from = "World"; std::string to = "C++"; std::string result = replace(str, from, to); std::cout << result << std::endl; // 输出:Hello, C++! return 0; }
也可以使用字符数组来实现字符串的替换。下面是一个例子:
#include <iostream> #include <cstring> char* replace(char* str, const char* from, const char* to) { size_t str_len = strlen(str); size_t from_len = strlen(from); size_t to_len = strlen(to); size_t new_len = str_len + to_len - from_len; char* new_str = new char[new_len + 1]; char* p1 = str; char* p2 = new_str; while (*p1) { if (strncmp(p1, from, from_len) == 0) { strncpy(p2, to, to_len); p2 += to_len; p1 += from_len; } else { *p2++ = *p1++; } } *p2 = '\0'; delete[] str; return new_str; } int main() { char str[] = "Hello, World!"; const char* from ="World"; const char* to = "C++"; char* result = replace(str, from, to); std::cout << result << std::endl; // 输出:Hello, C++! delete[] result; return 0; }
下面是使用 STL 的 `replace` 算法来实现字符串的替换的例子:
#include <algorithm> #include <string> std::string replace(std::string str, const std::string& from, const std::string& to) { size_t start_pos = 0; while ((start_pos = str.find(from, start_pos)) != std::string::npos) { str.replace(start_pos, from.length(), to); start_pos += to.length(); } return str; } int main() { std::string str = "Hello, World!"; std::string from = "World"; std::string to = "C++"; std::string result = replace(str, from, to); std::cout << result << std::endl; // 输出:Hello, C++! return 0; }
如果要替换字符串中的多个子串,或者要进行更复杂的字符串替换操作,可以使用正则表达式。下面是使用 C++ 的正则表达式库 <regex> 来实现字符串的替换的例子:
#include <regex> #include <string> std::string replace(std::string str, const std::string& pattern, const std::string& to) { std::regex r(pattern); return std::regex_replace(str, r, to); } int main() { std::string str = "Hello, World!"; std::string str = "Hello, World!"; std::string result = replace(str, "World", "C++"); // 替换所有的 "World" 为 "C++" std::cout << result << std::endl; // 输出:Hello, C++! result = replace(str, "[Ww]orld", "C++"); // 替换所有的 "World" 或 "world" 为 "C++" std::cout << result << std::endl; // 输出:Hello, C++! result = replace(str, "[a-zA-Z]+", "C++"); // 替换所有的单词为 "C++" std::cout << result << std::endl; // 输出:C++, C++! result = replace(str, "\\b\\w+\\b", "C++"); // 同上 std::cout << result << std::endl; // 输出:C++, C++! }
注意:在使用正则表达式时,需要在字符串中的正则表达式前面加上 "\\"
关于“C++中的字符替换方法有哪些”这篇文章的内容就介绍到这里,感谢各位的阅读!相信大家对“C++中的字符替换方法有哪些”知识都有一定的了解,大家如果还想学习更多知识,欢迎关注亿速云行业资讯频道。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。