Tagged Questions
The boost-regex tag has no wiki summary.
8
votes
1answer
531 views
Boost ASIO - how to turn URL into IP adress?
So I need some way of turning given Protocol://URLorIP:Port string into string ip int port How to do such thing with boost ASIO and Boost Regex? Or is it possible - to get IP using C++ Net Lib (boost ...
8
votes
2answers
612 views
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
cat file2.ext
) | grep '^regex' # or sed 's/search/replace/'
I can ...
6
votes
2answers
544 views
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:
string s = "0.5 6 hello";
std::vector<boost::any> any_vector;
...
5
votes
1answer
341 views
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:
e = "(^|>)([^<>]+)";
h_str = ...
4
votes
2answers
429 views
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
Is there an algorithm to eliminate unnecessary parentheses in a string like that?
4
votes
3answers
7k views
fatal error LNK1104: cannot open file 'libboost_regex-vc90-mt-gd-1_42.lib'
i'm trying to use boost regex within my program
the problem is i get this error...
the only installation step i did was to add: "C:\Program Files\boost\boost_1_42"
into the Additional Include ...
4
votes
4answers
2k views
Why does my Boost.Regex search report only one match iteration?
I am trying to find out how many regex matches are in a string. I'm using an iterator to iterate the matches, and and integer to record how many there were.
long int before = GetTickCount();
string ...
3
votes
1answer
376 views
Boost.Regex vs C++11 Regex
Could someone explain the differences between the two? Which would be better to learn right now? How would knowledge transfer from one to the other and so on?
3
votes
2answers
322 views
Why boost regex ran out of stack?
#include <boost/regex.hpp>
#include <string>
#include <iostream>
using namespace boost;
static const regex regexp(
"std::vector<"
"(std::map<"
...
3
votes
4answers
679 views
boost::regex segfaults when using capture
I get a seg fault for the simple program below. It seems to be related to the destructor match_results.
#include <iostream>
#include <vector>
#include <string>
#include ...
2
votes
1answer
68 views
Visual Studios 2010 include Regex Error
I'm trying experiment with regex. So i created a project in VS 2010, and at the top i put:
#include "std_lib_facilities.h"
#include <regex>
using namespace std::tr1;
int main()
{
regex ...
2
votes
2answers
74 views
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 expression.
This one doesn't match and my regex is really huge.
Do you know if in the library is there any ...
2
votes
1answer
99 views
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.
First I managed it with this regular expression:
...
2
votes
1answer
256 views
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.
I want to grab the first field out of every line where the last field ...
2
votes
1answer
188 views
Using Boost-Regex to parse string into characters and numerals
I'd like to use Boost's Regex library to separate a string containing labels and numbers into tokens. For example 'abc1def002g30' would be separated into {'abc','1','def','002','g','30'}. I modified ...
2
votes
1answer
600 views
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.
I've read a lot of documentation on regex, but I just can't seem to understand ...
2
votes
3answers
444 views
Getting sub-match_results with boost::regex
Hey, let's say I have this regex: (test[0-9])+
And that I match it against: test1test2test3test0
const bool ret = boost::regex_search(input, what, r);
for (size_t i = 0; i < what.size(); ++i)
...
2
votes
2answers
137 views
whats wrong with my c++ regex match
i am writing an robots.txt parser in c++
boost::regex exrp( "^User-agent:\s*(.*)");
boost:: match_results<string::const_iterator> what;
...
2
votes
1answer
221 views
Boost regex_replace exception: “…This exception is thrown to prevent ”eternal“ matches…” being thrown on occassion
I am using Boost.Regex(boost-1.42) to remove the first line of a multi-line string(a fairly large string containing multiple lines ending in '\n').
i.e. using regex_replace to do something akin to ...
2
votes
0answers
354 views
boost::regex and tilde (~) [closed]
Please could you explain why given the following boost::regex pattern:
boost::regex re("/\\S+\\w");
/index.html is a match and /~index.html is not?
RegexBuddy in Perl mode finds a match in both ...
2
votes
1answer
451 views
boost example failed to build
I'm a newbie about boost. I compiled boost libraries with success (under mac os x). Now, I tried to build the very first example mentioned at boost website (including boost/ as include directory and ...
2
votes
1answer
267 views
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.
I'm calling a custom formatter on a string to format ...
2
votes
2answers
255 views
How can I convert Perl regular expressions to boost regular expressions?
What is equivalent to perl expression: /ing$|ed$|en$/ in boost regular expression?
Words end with ing or ed or en should match with reg expression in boost!
2
votes
2answers
111 views
getting names subgroups
I am working with the new version of boost 1.42 and I want to use regex with named sub groups. Below an example.
std::string line("match this here FIELD=VALUE in the middle");
boost::regex ...
2
votes
2answers
2k views
Boost regex and confusing errors
I'm trying to use Boost regex to see if something has an integer in it.
One of the examples on this page is
bool validate_card_format(const std::string& s)
{
static const boost::regex ...
2
votes
1answer
198 views
Boost.Regex oddity
Does anyone have any idea why the following code would output "no match"?
boost::regex r(".*\\.");
std::string s("app.test");
if (boost::regex_match(s, r))
std::cout << "match" ...
1
vote
0answers
31 views
boost regex formatter, how to use a custom function
Well how do I invoke a custom formatting function when calling boost::regex_replace?
My code is as following:
template <typename T>
std::string fmt(boost::match_results<T> match) {
...
1
vote
1answer
119 views
Parsing a zero-width regex with a regex
We use zero-width regex strings to specify the places in a string of amino acid symbols (basically A-Z) that are valid cleavage sites. For example, the proteolytic enzyme trypsin cleaves after K or R ...
1
vote
2answers
52 views
set boost regex from foreign source
I need to parse log and I`ve good working regex, but now I need to set regex from config file and here is problem.
int logParser()
{
std::string bd_regex; // this reads from config in other part of ...
1
vote
1answer
171 views
How to store intermediate values of circular buffer iterator?
I am a using a boost regex on a boost circular buffer and would like to "remember" positions where matches occur, what's the best way to do this? I tried the code below, but "end" seems to store the ...
1
vote
2answers
190 views
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 ...
1
vote
1answer
112 views
Boost regexp how to translate such PHP unescape function to C++?
Whe I had to create CMS in PHP I created simple unescape html function that looked like this:
function unescape($s) {
$s= preg_replace('/%u(....)/', '&#x$1;', $s);
$s= ...
1
vote
2answers
81 views
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:
#include <iostream>
#include ...
1
vote
2answers
145 views
When should I prefer boost::regex ( or boost::xpressive) over boost::algorithm
I thought the boost regex engines would be faster than boost::algorithm
This simple test shows algo beating the regex engines by a wide margin
This is the entire test program Did I miss something?
...
1
vote
1answer
131 views
Help with boost::regex trim
This regex will trim the string at line breaks. I want it to trim both end only and preserve any line breaks in the middle.
string s(" Stack \n Overflow ");
boost::regex expr("^[ \t]+|[ ...
1
vote
2answers
113 views
Regex for PHP. Search for words and return data after the words
I'm trying to make a regex for a work I've been asked to but I'm having no luck making it efficient enough.
The objective is to make the following as efficient as it can be.
Objective number 1. ...
1
vote
2answers
74 views
Searching using regular expresions C++
I'm using Boost.Regex to achieve something like this: search for a "|" and then take the left part of the "|" and put it a string, same with the right part:
string s1;
string s2;
who | sort
After ...
1
vote
2answers
662 views
Extract IP address from a string using boost regex?
I was wondering if anyone can help me, I've been looking around for regex examples but I still can't get my head over it.
The strings look like this:
"User JaneDoe, IP: 12.34.56.78"
"User JohnDoe, ...
1
vote
3answers
259 views
How to save/serialize compiled regular expression (std::regex) to a file?
I'm using <regex> from Visal Studio 2010.
I understand that when I create regex object then it's compiled. There is no compile method like in other languages and libraries but I thinks that's ...
1
vote
3answers
1k views
How can I use Boost::regex.hpp library in C++?
I tried to use Boost library but I failed, see my code:
#include "listy.h"
#include <boost/regex.hpp>
using namespace boost;
ListyCheck::ListyCheck() {
}
ListyCheck::~ListyCheck() {
}
bool ...
1
vote
1answer
910 views
When trying to include '#include <boost/regex.hpp>' I get: 1>LINK : fatal error LNK1104: cannot open file 'libboost_regex-vc100-mt-gd-1_39.lib'
Not sure why i get that, I downloaded libs from here and while I have a lib called 'libboost_regex-vc90-mt-gd-1_39.lib I don't have one which is called 'libboost_regex-vc100-mt-gd-1_39.lib', renaming ...
1
vote
1answer
628 views
C++, Boost regex, replace value function of matched value?
Specifically, I have an array of strings called val, and want to replace all instances of "%{n}%" in the input with val[n]. More generally, I want the replace value to be a function of the match ...
0
votes
3answers
60 views
regular expressions boost c++
trying to catch the characters at the start the string and newlines the string is
.V/1LBOG\n.F/AV0094/08NOV/SAL/Y\n.E/0134249356001"
the regular expression i am using is from the string above i ...
0
votes
1answer
29 views
regular expressions matches characters on different lines at the start
My question is how to match the first three characters of certain lines within a string using regular expressions the regex i have should work however when i run the program it only matches the first ...
0
votes
3answers
80 views
C++ Simple use of regex
I'm just trying to mess around and get familiar with using regex in c++.
Let's say I want the user to input the following: ###-$$-###, make #=any number between 0-9 and $=any number between 0-5. This ...
0
votes
2answers
23 views
Parse rules CF-grammar using Regular Expressions (how using templates)
I have CF-grammar. It rules is as follows:
S->a|AS
A->AB|a|b
B->b
I want to parse these rules using Regular Expressions.
My Regular Expression:
\b([A-Z])->(?:([A-Za-z]+)\|?)+
...
0
votes
0answers
11 views
Split function in regex
I want to separate a string which I am currently doing using the split function (boost). When you split the string it goes straight into a vector which is great, however there has to be character in ...
0
votes
3answers
96 views
Tokenize a string excluding delimiters inside quotes
First let me say, I have gone thoroughly through all other solutions to this problem on SO, and although they are very similar, none fully solve my problem.
I need a to extract all tokens excluding ...
0
votes
2answers
37 views
Constructing boost regex
I want to match every single number in the following string:
-0.237522264173E+01 0.110011117918E+01 0.563118085683E-01 0.540571836345E-01 -0.237680494785E+01 0.109394729137E+01 ...
0
votes
0answers
69 views
Matching binary data using boost regex
Is boost regex able to match binary data in a given binary input.
Eg:
Input in binary form: 0x01 0x02 0x03 0x04 0x05 0x01 0x02 0x03 0x04 0x08
Binary expression to match: 0x01 0x02 0x03 0x04
In this ...