aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-10-19 19:48:46 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-10-19 19:57:58 -0700
commit8cefb25bcb7edaedd20d8aa170b2e1b945fd1762 (patch)
treea6a5678a210e92b46d70aacf0d64e6a317223e39 /toolsrc/src
parentb1d5d8e8baf4bd5132de4415a0168432600ce998 (diff)
downloadvcpkg-8cefb25bcb7edaedd20d8aa170b2e1b945fd1762.tar.gz
vcpkg-8cefb25bcb7edaedd20d8aa170b2e1b945fd1762.zip
Use Strings::replace_all() instead of std::regex_replace()
Diffstat (limited to 'toolsrc/src')
-rw-r--r--toolsrc/src/vcpkg/commands.integrate.cpp8
-rw-r--r--toolsrc/src/vcpkg/export.cpp8
2 files changed, 8 insertions, 8 deletions
diff --git a/toolsrc/src/vcpkg/commands.integrate.cpp b/toolsrc/src/vcpkg/commands.integrate.cpp
index c8fa275ab..27e563cfa 100644
--- a/toolsrc/src/vcpkg/commands.integrate.cpp
+++ b/toolsrc/src/vcpkg/commands.integrate.cpp
@@ -93,9 +93,9 @@ namespace vcpkg::Commands::Integrate
</package>
)";
- std::string content = std::regex_replace(CONTENT_TEMPLATE, std::regex("@NUGET_ID@"), nuget_id);
- content = std::regex_replace(content, std::regex("@VCPKG_DIR@"), vcpkg_root_dir.string());
- content = std::regex_replace(content, std::regex("@VERSION@"), nupkg_version);
+ std::string content = Strings::replace_all(CONTENT_TEMPLATE, "@NUGET_ID@", nuget_id);
+ content = Strings::replace_all(std::move(content), "@VCPKG_DIR@", vcpkg_root_dir.string());
+ content = Strings::replace_all(std::move(content), "@VERSION@", nupkg_version);
return content;
}
@@ -308,7 +308,7 @@ CMake projects should use: "-DCMAKE_TOOLCHAIN_FILE=%s")",
System::println(System::Color::success, "Created nupkg: %s", nuget_package.string());
auto source_path = buildsystems_dir.u8string();
- source_path = std::regex_replace(source_path, std::regex("`"), "``");
+ source_path = Strings::replace_all(std::move(source_path), "`", "``");
System::println(R"(
With a project open, go to Tools->NuGet Package Manager->Package Manager Console and paste:
diff --git a/toolsrc/src/vcpkg/export.cpp b/toolsrc/src/vcpkg/export.cpp
index 5e27d4126..f0a3b23d0 100644
--- a/toolsrc/src/vcpkg/export.cpp
+++ b/toolsrc/src/vcpkg/export.cpp
@@ -44,12 +44,12 @@ namespace vcpkg::Export
</package>
)";
- std::string nuspec_file_content = std::regex_replace(CONTENT_TEMPLATE, std::regex("@NUGET_ID@"), nuget_id);
- nuspec_file_content = std::regex_replace(nuspec_file_content, std::regex("@VERSION@"), nupkg_version);
+ std::string nuspec_file_content = Strings::replace_all(CONTENT_TEMPLATE, "@NUGET_ID@", nuget_id);
+ nuspec_file_content = Strings::replace_all(std::move(nuspec_file_content), "@VERSION@", nupkg_version);
nuspec_file_content =
- std::regex_replace(nuspec_file_content, std::regex("@RAW_EXPORTED_DIR@"), raw_exported_dir);
+ Strings::replace_all(std::move(nuspec_file_content), "@RAW_EXPORTED_DIR@", raw_exported_dir);
nuspec_file_content =
- std::regex_replace(nuspec_file_content, std::regex("@TARGETS_REDIRECT_PATH@"), targets_redirect_path);
+ Strings::replace_all(std::move(nuspec_file_content), "@TARGETS_REDIRECT_PATH@", targets_redirect_path);
return nuspec_file_content;
}