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