Boost.Regex is a C++ regular expression library with optional Unicode support through ICU.
0
votes
2answers
36 views
how to define a regular expression in boost?
I have a section in file:
[Source]
[Source.Ia32]
[Source.Ia64]
I have created the expression as:
const boost::regex source_line_pattern ("(Sources)(.*?)");
Now, I am trying to match the ...
0
votes
1answer
27 views
Regex for taking class name from string
I have string like this one:
parser = new ASTParser(in, encoding);
After i tokenize those string I get:
ASTParser(in, encoding);
Now, how can I perform regex to get only ASTParser?
I ...
0
votes
1answer
33 views
make can't find regex.hpp (boost)
I'm trying to compile a small c++ project with one file only. The 5 first lines of BoostRegex.cpp are:
#include <iostream>
#include <string>
#include <regex.hpp>
int main() { ....
...
2
votes
3answers
52 views
Limiting input data
I am new to regular expressions. I have been reading about regex for last couple of hours to understand how to use regex* to achieve the following, but with not much luck. My brain has started ...
2
votes
2answers
37 views
Normal login regex
I want to check login with regex.
Login must contain at least 3-16 characters ({3,16})
Login can contains only alphanumeric, - and _ ([a-zA-Z0-9_-])
Login can NOT contain __, --, -_, _- ...
0
votes
1answer
20 views
Why doesn't g++ see boost::regex_search() function?
I am trying to compile against the boost::regex library, but as soon as I try and use the regex_search() function, it barfs:
$ g++ -Wall -L/cygdrive/c/Users/Adrian/Downloads/boost_1_53_0/stage/lib ...
0
votes
0answers
61 views
Error in building boost library for Android framework on Linux
I am facing a problem while building boost library from latest version 1.53.0.
While following all steps as described in most of the tutorials for building boost library on Linux system for Android ...
0
votes
2answers
48 views
C++ boost/regex regex_search
Consider the following string content:
string content = "{'name':'Fantastic gloves','description':'Theese gloves will fit any time period.','current':{'trend':'high','price':'47.1000'}";
I have ...
2
votes
0answers
84 views
Boost regex. Named group in two part
I have problem with boost::regex::regex_match. I work with turned on BOOST_REGEX_MATCH_EXTRA.
What I have:
(this is a simplest example of my problem, not a real task)
string input1= "3 4 5";
...
1
vote
2answers
63 views
Using Boost C++ library to do a regex replace with a custom replacement
I can use Xpressive of the Boost library to do some regex replacement like this:
#include <iostream>
#include <boost/xpressive/xpressive.hpp>
void replace(){
std::string in("a(bc) ...
0
votes
1answer
34 views
Combining two regular expressions in boost regex
I have two regular expressions which looks up a url and determines if the URL is a silverlight video url
URL should have at least one of these extensions any where .isma, .ismv, .isml
Regex: ...
0
votes
1answer
52 views
Ignore case with boost::regexp [duplicate]
Strangely enough, google refuses to answer such simple question:
How do I make boost::regexp case-insensitive?
This is what I have:
static const boost::regex bad_words("(?:^|.* ...
1
vote
2answers
71 views
Using boost::regex_search() with string iterators
I'm trying to get boost::regex to give me all occurrences of a pattern in a search string. Thought such things would be simple, but leave it to boost and STL to add 10 meta-layers of template ...
1
vote
1answer
23 views
Join two regular expresion results into one output field, when only one is possible at a time
I'm parsing chat output to get the user name. This is what outputs may look like:
<Darker> MC_BOT sethome
(From Darker): MC_BOT exit
I need to match username and the command contents in the ...
0
votes
2answers
210 views
Put first boost::regex match into a string [duplicate]
Somehow, I've failed to find out, how to put only the first occurrence or regular expression to string. I can create a regex object:
static const boost::regex e("<(From ...
0
votes
0answers
18 views
boost::regex , extract fields
How do we extract fields between a string delimiter , when the string is something like below
string test = "title=attraction & lodging||-||reqver=1"; where "||-||"
is the delimiter
So ...
0
votes
0answers
33 views
regex - length in string to be matched
Lets say i transfer some data over TCP/IP, using the following protocol:
byte 0 - file name length
byte 1...N - file name
So the packet can have 1 to N number of characters, but the number of ...
0
votes
0answers
38 views
How to change the regex to match my log file?
I want to know how I can change this regex to match these two lines of a log file? The first line does not have ip, and the second one includes ip at the end of the line.
Regex:
...
0
votes
1answer
61 views
Error recovering values from boost::unordered::unordered_map using std::string keys
I'm storing in an unordered_map the results I get from a regex match.
std::cout the sub matches m[1].str() and m[2].str() shows the pair key-value correctly.
Although when I store them in an ...
0
votes
1answer
91 views
error while working with boost::sregex_token_iterator
I want to search for a regular expression and print it with a color. I used boost::sregex_token_iterator to do this. this is my code
boost::regex re("ab.");
string s="";
string buf;
...
0
votes
4answers
86 views
Regex Lookbehind assertion - match link anchor text
I have links like
<a href="#" class="social google">Google</a>
<a href="#" class="social yahoo">Yahoo</a>
<a href="#" class="social facebook">Facebook</a>
Now I ...
0
votes
0answers
28 views
generate pattern dynamically
I've some input names like "A1/I_MUX_N_9/D0" or "C1/D1/I_AND_N_20[0]/OUT".
I want to modify these names like "A1/I_MUX_N_d/D0" or "C1/D1/I_AND_N_d[0]/OUT".
For specific cases like this, I'm able to ...
-1
votes
4answers
84 views
Nesting OR in Regular Expressions [closed]
How do I match an expression where I need to do an or of another set?
i.e., how do I match something of the format
[
[
[ a | b ] |
[ x | y ]
]
]
where a, b, x and y are strings.
I ...
0
votes
2answers
78 views
Extracting quoted and unquoted values using regex
I'm trying to to parse a string of type <tag>=<value> using regular expressions but have hit some issues adding support for quoted values. The idea is that any unquoted values should be ...
0
votes
1answer
36 views
Smarter way to use regex to convert list of addresses
I don't know enough about regex to come up with a smarter way to turn a list of addresses from blocks into single lines.
Here's an example:
@sdfqsdf
qsdfqdsf
USA
@sdfqsdf
qsdfqdsf
USA
etc.
I ...
0
votes
1answer
33 views
ReplaceRegex Function not doing the job
I want to edit this line of input and add some more values to the Product_A Key.
input="CSDT_FLAG_PRODUCT_FF_FWUIDS=Product_A:45223423;Product_PD:4;Product_CD:345345,22454;Product_F:3423"
I have ...
0
votes
1answer
69 views
Using boost to extract content from a string
I had recently written regexes to parse contens in my file but that one was in .NET and I just started using Boost now for my C++ project.
I have a line similar to the following, which is a ...
0
votes
0answers
200 views
Boost regex in static library not fully resolved?
I am writing a static library for use in a couple projects using the Qt build system. While the library itself doesn't use Qt, the applications using it will use Qt and I wanted to use Qt creator for ...
1
vote
2answers
115 views
getting between square bracket having specific characteristic using Boost regex in C++ not getting answer
I have a string like this:
This is a link [[abcd 1234|xyz 1234]] [[India]] [[abcd 1234|xyz 1234]]
and I want to get :
This is a link abcd 1234 [[India]] abcd 1234
I want to take double square ...
0
votes
1answer
288 views
replace string through regex using boost C++
I have string in which tags like this comes(there are multiple such tags)
|{{nts|-2605.2348}}
I want to use boost regex to remove |{{nts| and }} and replace whole string that i have typed above ...
1
vote
1answer
66 views
Boost Regex unknown number of var
I have an issue with a regex expression and need some help. I have some expressions like these in mein .txt File:
19 = NAND (1, 19)
regex expression : http://rubular.com/r/U8rO09bvTO
With this ...
1
vote
1answer
131 views
boost regex_search cannot find the first match
boost::regex re("(abc)(.*?)");
boost::smatch m;
std::string str = "abcdlogin";
boost::regex_search(str, m, re);
I found m[1].first is "abcdlogin", m[1].second is "dlogin".
But I think is m[1].first ...
0
votes
1answer
81 views
what does this convoluted regex do
I came across the following regex at work. What does it do?
,(?=(?:[^\"]*\"[^\"]*\")*(?![^\"]*\"))
To understand it, I split it into following parts
, = Match everything that has ,
(?= = Followed ...
0
votes
1answer
153 views
Boost regex not matching “\\s” to spaces
I'm just starting out with boost and c++ and I'm struggling to understand the behaviour of boost's regular expression engine when it comes to matching whitespace. If I use the code:
boost::regex rx(" ...
0
votes
2answers
108 views
How to check which matching group was used to match (boost-regex)
I'm using boost::regex to parse some formatting string where '%' symbol is escape character. Because I do not have much experience with boost::regex, and with regex at all to be honest I do some trial ...
3
votes
2answers
88 views
Is there any way to extract Boost Regex so I can package it with my project?
I'm working on a project written in C++ that uses the Boost Regex library to do some parsing. My problem is, I need to run the program on a remote machine that doesn't have the boost library ...
0
votes
1answer
72 views
CMake Debian Dependency on Boost Regex
I am currently trying to build a debian package from my project, which uses Boost-Regex. Everything is working fine except defining a dependency throug CPACK_DEBIAN_PACKAGE_DEPENDS. I don't seem to ...
0
votes
5answers
229 views
Regex required for space delimited strings java
I have an operation that deals with many space delimited strings, I am looking for a regex for the String matches function which will trigger pass if first two strings before first space starts with ...
0
votes
0answers
91 views
Why does boost::regex seem to break when I use icase in Xcode projects?
Recently I noticed that none of the regexes in my Xcode project seem to be working—they never match anything. The icase flag seems to be the problem—if I remove it, they all work as expected. I made a ...
1
vote
0answers
128 views
Boost Regex not working in Visual Studio 2010
I don't understand why Boost Regex doesn't work with my current VS 2010 project. On Linux the same code works fine and even in VS 2010 if I create a small project with just the offending code and same ...
0
votes
1answer
355 views
Boost regex on windows C++ code::blocks
I want to use boost regex in c++ on code::blocks on windows. I compile a simple program which uses the instruction regex pat( "^Subject: (Re: |Aw: )*(.*)" ); and it doesn't work, I get errors like: ...
0
votes
1answer
265 views
Static link of boost_regex library
I wrote a program using boost_regex library(ver 1.33.1) in CentOS 5.2 environment.
I installed the Boost library with yum command.
My program accepts compiling with this set of options below:
g++ ...
0
votes
1answer
68 views
How to stop the format ($) for boost::regex_replace in C++?
I'm using boost::regex_replace(replacement_text, regex, new_text) function to do this...
replacement_text = "{replace_me}"
regex = "(\{([^\}]*[^\s]*)\})"
new_text = "$$$"
For every new_text that ...
2
votes
1answer
75 views
Extracting sub-string of 4 digit in a line
Trying to figure out how to extract groups of 4 digit using regex
The regex I'm using now :
regex_time : "(([01][0-9]|2[0-3])[0-5][0-9])";
Code sample:
regex expressionFormat(REGEX_TIME);
...
1
vote
1answer
107 views
How to truncate a string given an expression using boost
I need to truncate a string after an underscore.
Example:-
std::wstring name = L"Steve_Smith";
trim_right_if(name, is_any_of(L"_"));
The trim_right_if is not working, the name remains the same ...
0
votes
1answer
442 views
C++ to convert Boost Regex match result to other format [duplicate]
Possible Duplicate:
How to convert a number to string and vice versa in C++
How should I convert the boost::regex match result to other format, like integer with below code?
string s = ...
0
votes
0answers
73 views
Boost regex_match to match max 7 words
Trying to use boost::regex_match to grab first 7 words using following regex
boost::regex xtract("(?:\\S+\\s+){7}");
boost::smatch matches;
boost::regex_match(test,matches, ...
0
votes
1answer
92 views
C++ boost.regex number of repetitions specified in the string
Suppose I wanted to create a boost.regex expression that would match strings such as
"repetitions: 5 aaaaa"
"repetitions: 3 aaa"
Is there a way to do this with boost?
0
votes
1answer
145 views
Named Subexpressions error in Boost Regex
I'm trying to use named subexpressions to replace multiple patterns in the input string using boost::regex_replace and named subexpressions.
I use the following code:
std::string s="Sun Fun Gun Tic ...
0
votes
0answers
62 views
How do I write Regex for a SublimeText2 snippet that does both a replace and a slice?
I've been looking at making more snippets for Sublimetext2. I've been looking at http://sublimetext.info/docs/en/extensibility/snippets.html and other questions here and I was able to write this ...