- C 标准库
- C 标准库
- C++ 标准库
- C++ 库 - 主页
- C++ 库 - <fstream>
- C++ 库 - <iomanip>
- C++ 库 - <ios>
- C++ 库 - <iosfwd>
- C++ 库 - <iostream>
- C++ 库 - <istream>
- C++ 库 - <ostream>
- C++ 库 - <sstream>
- C++ 库 - <streambuf>
- C++ 库 - <原子>
- C++ 库 - <复杂>
- C++ 库 - <异常>
- C++ 库 - <功能>
- C++ 库 - <限制>
- C++ 库 - <语言环境>
- C++ 库 - <内存>
- C++ 库 - <新>
- C++ 库 - <数字>
- C++ 库 - <正则表达式>
- C++ 库 - <stdexcept>
- C++ 库 - <字符串>
- C++ 库 - <线程>
- C++ 库 - <元组>
- C++ 库 - <类型信息>
- C++ 库 - <实用程序>
- C++ 库 - <valarray>
C++ 正则表达式库 - regex_replace
描述
它制作目标序列(主题)的副本,并将正则表达式 rgx(模式)的所有匹配项替换为 fmt(替换)。目标序列是 s 或第一个和最后一个之间的字符序列,具体取决于所使用的版本。
宣言
以下是 std::regex_replace 的声明。
template <class traits, class charT> basic_string<charT>regex_replace (const charT* s, const basic_regex<charT,traits>& rgx, const charT* fmt,
C++11
template <class traits, class charT> basic_string<charT>regex_replace (const charT* s, const basic_regex<charT,traits>& rgx, const charT* fmt,
C++14
template <class traits, class charT> basic_string<charT>regex_replace (const charT* s, const basic_regex<charT,traits>& rgx, const charT* fmt,
参数
s - 它是一个带有目标序列的字符串。
rgx - 它是一个要匹配的 basic_regex 对象。
flags - 用于控制 rgx 的匹配方式。
m - 它是 match_results 类型的对象。
返回值
它返回一个带有结果序列的字符串对象。
例外情况
No-noexcept - 该成员函数从不抛出异常。
例子
在下面的 std::regex_replace 示例中。
#include <iostream> #include <string> #include <regex> #include <iterator> int main () { std::string s ("there is a subsequence in the string\n"); std::regex e ("\\b(sub)([^ ]*)"); std::cout << std::regex_replace (s,e,"sub-$2"); std::string result; std::regex_replace (std::back_inserter(result), s.begin(), s.end(), e, "$2"); std::cout << result; std::cout << std::regex_replace (s,e,"$1 and $2",std::regex_constants::format_no_copy); std::cout << std::endl; return 0; }
输出应该是这样的 -
there is a sub-sequence in the string there is a sequence in the string sub and sequence
正则表达式.htm