473,508 Members | 2,412 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Need help in forming a regular expression using regex_replace

Hello,

I am relatively new to the world of regex and require some help in
forming a regular expression to achieve the following:

I have an input stream similar to:

Slot: slot1
Description: this is a description
Slot: slot2
Description: this is the second description
Attribute1: atrra
Attribute2: attrb
Slot: slot3
Description: this is the third description
Attribute1: atrrc
Attribute2: attrd

I have to pick all the values for "Slot" and corresponding
"Attribute2". If there is no "Attribute2" for a "Slot", I need to skip
that Slot.

I arrived at a regular exp similar to:
"^Slot:\\s+(.*?)\\s+Description:\\s+.*?\\s+Attribu te1:\\s+.*?\\s+Attribute2:\\s+(.*?)\\s+.*?$"
but no luck. For the above example, this gives me "slot1 and attrd",
wheras I was expecting slot2, attrb and slot3, attrd.

Any thoughts on this is highly appreciated.

Thanks in advance!

Regards,
Deepak

Jul 11 '06 #1
6 2215
<de*************@yahoo.co.inwrote:
I am relatively new to the world of regex and require some help in
forming a regular expression...
This has absolutely nothing to do with C++. Ask this in a group
that deals more with regexes, like a Gnu utilities group, or
even a perl group:

gnu.utils.help
comp.lang.perl.misc

Also be aware that many programs that use regexes use non-standard
extensions. What program are you using your regexes with? Ask in
a group suitable for that program. Or call it's vendor on the phone.
Or visit the program's web site. Or read a book or manual on the
program. Or google for info on the program.

--
Cheers,
Robbie Hatley
East Tustin, CA, USA
lone wolf intj at pac bell dot net
(put "[usenet]" in subject to bypass spam filter)
http://home.pacbell.net/earnur/
Jul 11 '06 #2

Robbie Hatley wrote:
<de*************@yahoo.co.inwrote:
I am relatively new to the world of regex and require some help in
forming a regular expression...

This has absolutely nothing to do with C++. Ask this in a group
that deals more with regexes, like a Gnu utilities group, or
even a perl group:

gnu.utils.help
comp.lang.perl.misc

Also be aware that many programs that use regexes use non-standard
extensions. What program are you using your regexes with? Ask in
a group suitable for that program. Or call it's vendor on the phone.
Or visit the program's web site. Or read a book or manual on the
program. Or google for info on the program.
Not so! This group's stated subject matter is that which is related to
"the C++ language definition as determined by the ISO/ANSI C++ Standard
document, and by planned extensions and adjustments." In fact, TR1 (a
planned extension to the standard library) has a regex component.

Cheers! --M

Jul 11 '06 #3
de*************@yahoo.co.in wrote:
I am relatively new to the world of regex and require some help in
forming a regular expression to achieve the following:

I have an input stream similar to:

Slot: slot1
Description: this is a description
Slot: slot2
Description: this is the second description
Attribute1: atrra
Attribute2: attrb
Slot: slot3
Description: this is the third description
Attribute1: atrrc
Attribute2: attrd

I have to pick all the values for "Slot" and corresponding
"Attribute2". If there is no "Attribute2" for a "Slot", I need to skip
that Slot.

I arrived at a regular exp similar to:
"^Slot:\\s+(.*?)\\s+Description:\\s+.*?\\s+Attribu te1:\\s+.*?\\s+Attribute2:\\s+(.*?)\\s+.*?$"
but no luck. For the above example, this gives me "slot1 and attrd",
wheras I was expecting slot2, attrb and slot3, attrd.

Any thoughts on this is highly appreciated.
Can you show us a minimal but complete sample that demonstrates this
behavior? Your regular expression might be fine but your use of the
library might be in error.

Cheers! --M

Jul 11 '06 #4
On 11 Jul 2006 04:08:29 -0700 in comp.lang.c++,
de*************@yahoo.co.in wrote,
>I arrived at a regular exp similar to:
"^Slot:\\s+(.*?)\\s+Description:\\s+.*?\\s+Attrib ute1:\\s+.*?\\s+Attribute2:\\s+(.*?)\\s+.*?$"
but no luck. For the above example, this gives me "slot1 and attrd",
wheras I was expecting slot2, attrb and slot3, attrd.

Any thoughts on this is highly appreciated.
My thoughts: your regex is too complex and troublesome for me.

Read your input line-by-line into a std::string with std::getline.
If you like regex, use it to parse the lines,
"([A-Za-z0-9]):(.*)" or suchlike.

When you have parts you can handle them sensibly, errors are not all
the same "regex failed" message to the poor user, etc.

Jul 11 '06 #5
de*************@yahoo.co.in wrote:
Hello,

I am relatively new to the world of regex and require some help in
forming a regular expression to achieve the following:

I have an input stream similar to:

Slot: slot1
Description: this is a description
Slot: slot2
Description: this is the second description
Attribute1: atrra
Attribute2: attrb
Slot: slot3
Description: this is the third description
Attribute1: atrrc
Attribute2: attrd

I have to pick all the values for "Slot" and corresponding
"Attribute2". If there is no "Attribute2" for a "Slot", I need to skip
that Slot.

I arrived at a regular exp similar to:
"^Slot:\\s+(.*?)\\s+Description:\\s+.*?\\s+Attribu te1:\\s+.*?\\s+Attribute2:\\s+(.*?)\\s+.*?$"
but no luck. For the above example, this gives me "slot1 and attrd",
wheras I was expecting slot2, attrb and slot3, attrd.

Any thoughts on this is highly appreciated.
As written, the regular expression requires the presence of all three of
Definition, Attribute1, and Attribute2 for a match. So with your
example, the Definition portion of the first Slot swallows all the input
up to Attribute1, that is, the definition field includes the beginnning
of the text for the next Slot.

You need to make the attributes optional. Change

"Attribute1:\\s+.*?\\s+"
to

"(?:Attribute1:\\s+.*?)?"

and similarly for attribute2. (Also take out the ^ an $; they're just
confusing the issue) That way you can pick out the first slot
definition. Then check whether it had an attribute 2, and if not, repeat
the search, starting at the first character after the match. In general
that kind of repetitive search is tricky to get right, so you're better
off letting the implementor handle the details. With TR1's regular
expressions, the code would look something like this:

using namespace std::tr1;

regex rgx( regular expression goes here );
const char *text = sample text goes here;
cregex_iterator first(text, text + strlen(text), rgx);
cregex_iterator last;
while (first != last)
{
if ((*first)[1].matched)
cout << *first << '\n';
++first;
}

For more details, see chapter 19 of my book, "The C++ Standard Library
Extensions," which will be in bookstores later this month. It covers all
of TR1.
Jul 11 '06 #6

"mlimber" <ml*****@gmail.comwrote:
Robbie Hatley wrote:
<de*************@yahoo.co.inwrote:
I am relatively new to the world of regex and require some help in
forming a regular expression...
This has absolutely nothing to do with C++. Ask this in a group
that deals more with regexes, like a Gnu utilities group, or
even a perl group:

gnu.utils.help
comp.lang.perl.misc

Also be aware that many programs that use regexes use non-standard
extensions. What program are you using your regexes with? Ask in
a group suitable for that program. Or call it's vendor on the phone.
Or visit the program's web site. Or read a book or manual on the
program. Or google for info on the program.

Not so! ... TR1 (a planned extension to the standard library)
has a regex component.
If so, awesome, bitchin', and cool. I had to write my own regex
routines (partly based a couple of non-standard, buggy regex
functions that come with my compiler) in order to do regexes in
my programs. It was a lot of hard work, doesn't always work right,
and is very unportable. If regex gets in the std. lib., that would
be awesome.

So perhaps I erred in my earlier comments. If so, my apologies
to you and the OP.
--
Cheers,
Robbie Hatley
East Tustin, CA, USA
lone wolf intj at pac bell dot net
(put "[usenet]" in subject to bypass spam filter)
http://home.pacbell.net/earnur/
Jul 14 '06 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
7778
by: derek.google | last post by:
I hope a Boost question is not too off-topic here. It seems that upgrading to Boost 1.33 broke some old regex code that used to work. I have reduced the problem to this simple example: cout <<...
4
3206
by: Neri | last post by:
Some document processing program I write has to deal with documents that have headers and footers that are unnecessary for the main processing part. Therefore, I'm using a regular expression to go...
6
489
by: JohnSouth | last post by:
Hi I've been using a Regular expression to test for valid email addresses. It looks like: \w+(\w+)*@\w+(\w+)*\.\w+(\w+)* I've now had 2 occassions where it has rejected and email address...
3
2276
by: Joe | last post by:
Hi, I have been using a regular expression that I don’t uite understand to filter the valid email address. My regular expression is as follows: <asp:RegularExpressionValidator...
18
3015
by: Q. John Chen | last post by:
I have Vidation Controls First One: Simple exluce certain special characters: say no a or b or c in the string: * Second One: I required date be entered in "MM/DD/YYYY" format: //+4 How...
3
3200
by: James D. Marshall | last post by:
The issue at hand, I believe is my comprehension of using regular expression, specially to assist in replacing the expression with other text. using regular expression (\s*) my understanding is...
7
3794
by: Billa | last post by:
Hi, I am replaceing a big string using different regular expressions (see some example at the end of the message). The problem is whenever I apply a "replace" it makes a new copy of string and I...
3
1334
by: Lucky | last post by:
hi guys, i'm practising regular expression. i've got one string and i want it to split in groups. i was trying to make one regular expression but i didn't successed. please help me guys. i'm...
25
5130
by: Mike | last post by:
I have a regular expression (^(.+)(?=\s*).*\1 ) that results in matches. I would like to get what the actual regular expression is. In other words, when I apply ^(.+)(?=\s*).*\1 to " HEART...
0
7135
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7410
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
7505
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5650
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
4729
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3201
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1570
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
774
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
440
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.