boost-regex
Boost.Regex vs C++11 Regex
Could someone explain the开发者_StackOverflow中文版 differences between the two? Which would be better to learn right now? How would knowledge transfer from one to the other and vice-versa?The boost r[详细]
2023-04-08 22:09 分类:问答Matching binary data using boost regex
Is boost regex able to match binary data in a given binary input? Ex.: Input in binary form: 0x01 0x02 0x03 0x04 0x05 0x01 0x02 0x03 0x04 0x08[详细]
2023-04-03 04:29 分类:问答Boost DYN_LNK vs. USE_DLL vs. USE_LIB
What is the difference between the following defines: #define BOOST_REGEX_DYN_LNK #define BOOST_REGEX_US开发者_JS百科E_DLL[详细]
2023-04-01 04:11 分类:问答Boost RegEx: Specific Question
I am trying to use this expression: Expression:\"\\w{1,}\\s*?\\-\\-(\\>)?\\s*?\\w{1,}\" Keep in mind I am escaping the \\ with a second \\ in my code.[详细]
2023-03-27 08:14 分类:问答Problem with using Boost::Regex (Console just freezes up)
For some reason boost::regex overloads my application and it freezes without an error, but it compiles fine. For instance this code f开发者_运维技巧ails flatly. What am I doing wrong? I updated to boo[详细]
2023-03-25 18:56 分类:问答boost with icu u32_regex memory leak / cache on Win32
When using the boost regex class with the optional ICU support enabled (see boost documentation for details) I seem to get a memory leak or rather some sort of caching of memory happening which I cann[详细]
2023-03-23 13:07 分类:问答What would be Boost::regexp analog for PHP`preg_match_all`function?
So I have such php function I want to translate to C++: protected function htmlTag($content, $tag, $attrName, $attrValue, $valueName)[详细]
2023-03-20 17:45 分类:问答how to understand what part of the boost::regex failed to match/search
I am using boost::regex to match (better to say boost::regex_search) a text vs a regular expr开发者_开发技巧ession.[详细]
2023-03-20 07:16 分类:问答boost xpressive: wrong match?
I want to match a simple expression with boost, but it behaves strange... The code below should match and display \"a\" from first and second strings:[详细]
2023-03-15 16:08 分类:问答Boost::regex_iterator constructor fails but make_regex_iterator function succeeds
std::string line; This throws std::runtime_error what():Memory exhausted: regex_it =boost::sregex_iterator(line.begin(), line.end(), re);[详细]
2023-03-13 04:56 分类:问答