From f94a2a2c8ead4895c9499ce7d768f7e153efccdf Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Tue, 19 Jun 2018 15:32:31 +0300 Subject: Adapt to renaming regex_replace_ex() to regex_replace_search() --- build2/functions-regex.cxx | 48 +++++++++++++++++++++--------------------- build2/test/script/builtin.cxx | 13 ++++++------ 2 files changed, 31 insertions(+), 30 deletions(-) diff --git a/build2/functions-regex.cxx b/build2/functions-regex.cxx index c44ad7b..76fcce9 100644 --- a/build2/functions-regex.cxx +++ b/build2/functions-regex.cxx @@ -209,10 +209,10 @@ namespace build2 try { - r.emplace_back (regex_replace_ex (to_string (move (v)), - rge, - fmt, - fl.second).first); + r.emplace_back (regex_replace_search (to_string (move (v)), + rge, + fmt, + fl.second).first); } catch (const regex_error& e) { @@ -239,14 +239,14 @@ namespace build2 try { - regex_replace_ex (to_string (move (v)), rge, fmt, - [&r] (string::const_iterator b, - string::const_iterator e) - { - if (b != e) - r.emplace_back (string (b, e)); - }, - fl.second); + regex_replace_search (to_string (move (v)), rge, fmt, + [&r] (string::const_iterator b, + string::const_iterator e) + { + if (b != e) + r.emplace_back (string (b, e)); + }, + fl.second); } catch (const regex_error& e) { @@ -274,10 +274,10 @@ namespace build2 { for (auto& v: s) { - string s (regex_replace_ex (convert (move (v)), - rge, - fmt, - fl.second).first); + string s (regex_replace_search (convert (move (v)), + rge, + fmt, + fl.second).first); if (!s.empty ()) r.emplace_back (move (s)); @@ -311,10 +311,10 @@ namespace build2 { for (auto& v: s) { - string s (regex_replace_ex (convert (move (v)), - rge, - fmt, - fl.second).first); + string s (regex_replace_search (convert (move (v)), + rge, + fmt, + fl.second).first); if (!s.empty ()) { @@ -403,7 +403,7 @@ namespace build2 // is always untyped, regardless of the argument type. // // Substitution escape sequences are extended with a subset of Perl - // sequences (see butl::regex_replace_ex() for details). + // sequences (see libbutl/regex.mxx for details). // // The following flags are supported: // @@ -452,7 +452,7 @@ namespace build2 // value to string prior to matching. // // Substitution escape sequences are extended with a subset of Perl - // sequences (see butl::regex_replace_ex() for details). + // sequences (see libbutl/regex.mxx for details). // // The following flags are supported: // @@ -497,7 +497,7 @@ namespace build2 // elements optionally separated with a delimiter. // // Substitution escape sequences are extended with a subset of Perl - // sequences (see butl::regex_replace_ex() for details). + // sequences (see libbutl/regex.mxx for details). // // The following flags are supported: // @@ -618,7 +618,7 @@ namespace build2 // of transformed elements, omitting the empty ones. // // Substitution escape sequences are extended with a subset of Perl - // sequences (see butl::regex_replace_ex() for details). + // sequences (see libbutl/regex.mxx for details). // // The following flags are supported: // diff --git a/build2/test/script/builtin.cxx b/build2/test/script/builtin.cxx index d52aee4..e912079 100644 --- a/build2/test/script/builtin.cxx +++ b/build2/test/script/builtin.cxx @@ -1337,12 +1337,13 @@ namespace build2 string s; while (getline (cin, s)) { - auto r (regex_replace_ex (s, - re, - subst->replacement, - subst->global - ? regex_constants::format_default - : regex_constants::format_first_only)); + auto r (regex_replace_search ( + s, + re, + subst->replacement, + subst->global + ? regex_constants::format_default + : regex_constants::format_first_only)); // Add newline regardless whether the source line is newline- // terminated or not (in accordance with POSIX). -- cgit v1.1