Registry / utility / boost-regex

boost-regex

JSON →
library1.90.0vcpkgunverified

Boost.Regex provides regular expression support for C++.

vcpkg install boost-regex
INSTALL
IMPORT
SIG · BOOST-REGEX
B
boost-regex
utilitycppv1.90.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

boost/regex.hpp
#include <boost/regex.hpp>

Searches for words using Boost.Regex.

#include <boost/regex.hpp> #include <iostream> #include <string> int main() { std::string s = "Hello World"; boost::regex expr("\\w+"); boost::smatch match; if (boost::regex_search(s, match, expr)) { std::cout << match[0] << std::endl; } return 0; }
Debug
Known issues
gotchaBoost.Regex requires linking against the boost_regex library.
fix
Link with Boost::regex in CMake.
affects: *
Upgrade
Version history
1.90.0latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
7 hits · last 30 days
node
6
Meta
1
Resources

No resource links recorded.

boost-regex — pip install boost-regex · libregistry