boost-regex
Ignore case using boost::regex_search
How do you use boost::regex_search with 开发者_如何转开发the ignore case flags or constants in C++?[详细]
2023-03-11 18:10 分类:问答Regex matching url authority parts
I need to match these parts of the following string: (user)@(hostname):(port) User and port can optionally be matched.[详细]
2023-03-09 04:35 分类:问答boost regular expression capture groups
After a days worth of hacking and reading, I have had no luck with boost\'s regex engine, hopefully someone here can help.[详细]
2023-03-08 20:33 分类:问答Help with boost::regex trim
This regex will trim the string at line breaks.I want it to trim开发者_Go百科 both end only and preserve any line breaks in the middle.[详细]
2023-03-07 07:04 分类:问答C++ Regular Expressions with Boost Regex
I am trying to take a string in C++ and find all IP addresses contained inside, and put them into a new vector string.[详细]
2023-03-01 05:06 分类:问答Getting sub-match_results with boost::regex
Hey, let\'s say I have this regex: (test[0-9]开发者_C百科)+ And that I match it against: test1test2test3test0[详细]
2023-02-28 09:31 分类:问答Regex with BoostRegex C++
Hi i wish to get the values of the following expression : POLYGON(100 20, 30 40, 20 10, 21 21) Searching POLYGON(100 20, 30 40, 20 10, 21 21)[详细]
2023-02-15 08:16 分类:问答how to convert bash script to C++ using boost::iostreams
I\'m trying to convert the following bash code into C++ using boost::iostreams: #!/usr/bin/bash ( gzip -cd file1.ext.gz[详细]
2023-02-13 01:39 分类:问答Extract IP address from a string using boost regex?
I was wondering if anyone can help me, I\'ve been looking aro开发者_如何学Cund for regex examples but I still can\'t get my head over it.[详细]
2023-02-12 06:20 分类:问答whats wrong with my c++ regex match
i am writing an robots.txt parser in c++ boost::regex exrp( \"^User-agent:\\s*开发者_如何学运维(.*)\");[详细]
2023-02-12 00:38 分类:问答