boost-regex
C++/Boost: Writing a more powerful sscanf replacement
I want to write a function in C++ to replace C\'s sscanf that assigns the matches to iterator. Basically, I want something like:[详细]
2023-02-10 23:53 分类:问答Problems with the two parameter format function in boost::regex_replace
I am having problems with the format function in boost::regex_replace.I can call the one parameter version of it, but not the two parameter:[详细]
2023-02-07 06:05 分类:问答Why did boost regex run out of stack space?
#include <boost/regex.hpp> #include <string> #include <iostream> using namespace boost;[详细]
2023-01-31 08:02 分类:问答Need help with boost regexp library
I\'m trying to port a code from PHP to C++. I was using the PHP build-in re开发者_StackOverflowgular expression to extract some value and it works well.[详细]
2023-01-19 18:42 分类:问答boost regex search fails with MFC CString
I havingan issue in using Boost regex with a MFC CString. The regex is very simple: it must check if the string ends with the name of a dll I am looking for.[详细]
2023-01-17 00:10 分类:问答Boost Regex not playing welll with Snow leopard
So I inherited code written in C++ that uses the Boost library. I could compile (using Code Blocks) and run the code on Linux Ubuntu but when I ported it over to the mac and installed the boost librar[详细]
2023-01-16 06:00 分类:问答How do I capture all matches of a repeating group with Boost::regex_search?
I amtrying to parse an input string using a regular expression. I am getting a problem when trying to capture a repeating group. I always seem to be matching last instance of the group. I have tried u[详细]
2023-01-04 19:50 分类:问答How do I get the regex matched value using Boost.Regex?
I\'m trying to extract the domain from a URL. Following is an example script. #include <iostream>[详细]
2023-01-03 20:07 分类:问答Removing unnecessary parentheses in a regular expression
Suppose I have (in a javascript regular expression) ((((A)B)C)D) Of course that really reads ABCD 开发者_如何学Python[详细]
2023-01-02 18:56 分类:问答Problem with boost::find_format_all, boost::regex_finder and custom regex formatter (bug boost 1.42)
I have a code that has been working for almost 4 years (since boost 1.33) and today I went from boost 1.36 to boost 1.42 and now I have a problem.开发者_运维技巧[详细]
2022-12-31 22:36 分类:问答