473,587 Members | 2,526 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

std::string question

Hello,

I would like to replace all the occurrence of "(" and ")"
in C++ std::string to "\(" and "\)".

For example:
string s = "(abc)|(toto)|( lala)"
will be become "\(abc\)|\(toto \)|\(lala\)"
Question:
Just wonder if there is a straight forward function to do so??
Currently I am using a while loop to read through the string, then
basic_string::f ind and basic_string::r eplace the occurrence of "(" and ")".

Any better solution?

Thanks,
Kian
Jul 22 '05 #1
6 2610

"Kian Goh" <ki**@hotmail.c om> wrote in message
news:g_******** ************@ro gers.com...
Hello,

I would like to replace all the occurrence of "(" and ")"
in C++ std::string to "\(" and "\)".

For example:
string s = "(abc)|(toto)|( lala)"
will be become "\(abc\)|\(toto \)|\(lala\)"
Question:
Just wonder if there is a straight forward function to do so??
No.


Currently I am using a while loop to read through the string, then
basic_string::f ind and basic_string::r eplace the occurrence of "(" and
")".

Any better solution?


Certainly there are bad ways and good ways to write this code but without
seeing the code you have written it is impossible to say whether there is a
better solution.

A good solution would work in three phases.

1) Go though the string seeing how many backslashes you are going to need to
insert
2) Increase the size of the string by the number of extra backslashes needed
3) Loop backwards though the string, copying characters and inserting
backslashes as necessary.

The point of this compexity is that it minimises reallocation of the string
and copying of characters.

A bad solution would work like this

1) Go forwards through the string and each time you find a "(" or ")" insert
a backslash.

john
Jul 22 '05 #2
"Kian Goh" <ki**@hotmail.c om> wrote in message
news:g_******** ************@ro gers.com...
Hello,

I would like to replace all the occurrence of "(" and ")"
in C++ std::string to "\(" and "\)".

For example:
string s = "(abc)|(toto)|( lala)"
will be become "\(abc\)|\(toto \)|\(lala\)"
Question:
Just wonder if there is a straight forward function to do so??
Currently I am using a while loop to read through the string, then
basic_string::f ind and basic_string::r eplace the occurrence of "(" and
")".

Any better solution?

Thanks,
Kian


Here is a solution:

string add_backslash_t o_brackets(char ch)
{
string s(1, ch);
if (ch == '(' || ch == ')')
s.insert(s.begi n(), '\\');
return s;
}

vector<string> v;
transform(s.beg in(), s.end(), back_inserter(v ), add_backslash_t o_brackets);
s = accumulate(v.be gin(), v.end(), string());

Hope you like it.
Jul 22 '05 #3
"Jason Heyes" <ja********@opt usnet.com.au> wrote in message
news:419b0f0b$0 $24380
"Kian Goh" <ki**@hotmail.c om> wrote in message
For example:
string s = "(abc)|(toto)|( lala)"
will be become "\(abc\)|\(toto \)|\(lala\)"

string add_backslash_t o_brackets(char ch)
{
string s(1, ch);
if (ch == '(' || ch == ')')
s.insert(s.begi n(), '\\');
return s;
}

vector<string> v;
transform(s.beg in(), s.end(), back_inserter(v ), add_backslash_t o_brackets); s = accumulate(v.be gin(), v.end(), string());


Good.

Along the same lines, the function back_inserter(v ) returns an iterator,
specifically a std::back_inser t_iterator<std: :vector<std::st ring>>, whose
operator= calls v.push_back(... ). You could write your own
back_insert_ite rator class too, thus avoiding the need to create strings and
a vector of strings.

class special_back_in sert_iterator : public
std::back_inser t_iterator<std: :string> {
typedef std::back_inser t_iterator<std: :string> inherited;
public:
special_back_in sert_iterator(s td::string& s) : inherited(s) { }
special_back_in sert_iterator& operator=(char c) {
if (ch == '(' || ch == ')') inherited::oper ator=('\\');
inherited::oper ator==(c);
return *this;
}
};

inline
special_back_in sert_iterator special_back_in serter(std::str ing&)
{
return ...;
}

string s2;
transform(s.beg in(), s.end(), special_back_in serter(s2));
Jul 22 '05 #4
"Siemel Naran" <Si*********@RE MOVE.att.net> wrote in message
news:nx******** ***********@bgt nsc05-news.ops.worldn et.att.net...
"Jason Heyes" <ja********@opt usnet.com.au> wrote in message
news:419b0f0b$0 $24380
"Kian Goh" <ki**@hotmail.c om> wrote in message

> For example:
> string s = "(abc)|(toto)|( lala)"
> will be become "\(abc\)|\(toto \)|\(lala\)"

string add_backslash_t o_brackets(char ch)
{
string s(1, ch);
if (ch == '(' || ch == ')')
s.insert(s.begi n(), '\\');
return s;
}

vector<string> v;
transform(s.beg in(), s.end(), back_inserter(v ),

add_backslash_t o_brackets);
s = accumulate(v.be gin(), v.end(), string());


Good.

Along the same lines, the function back_inserter(v ) returns an iterator,
specifically a std::back_inser t_iterator<std: :vector<std::st ring>>, whose
operator= calls v.push_back(... ). You could write your own
back_insert_ite rator class too, thus avoiding the need to create strings
and
a vector of strings.

class special_back_in sert_iterator : public
std::back_inser t_iterator<std: :string> {
typedef std::back_inser t_iterator<std: :string> inherited;
public:
special_back_in sert_iterator(s td::string& s) : inherited(s) { }
special_back_in sert_iterator& operator=(char c) {
if (ch == '(' || ch == ')') inherited::oper ator=('\\');
inherited::oper ator==(c);
return *this;
}
};

inline
special_back_in sert_iterator special_back_in serter(std::str ing&)
{
return ...;
}

string s2;
transform(s.beg in(), s.end(), special_back_in serter(s2));


Nice. It all happens in one line of STL. I wonder how these STL solutions
compare with non-STL ones in terms of code complexity. Alot better I
presume.
Jul 22 '05 #5
On Tue, 16 Nov 2004 21:59:27 -0500 in comp.lang.c++, "Kian Goh"
<ki**@hotmail.c om> wrote,
I would like to replace all the occurrence of "(" and ")"
in C++ std::string to "\(" and "\)".

#include <string>
#include <algorithm>
#include <numeric>
#include <iostream>

std::string changer(std::st ring was, char in)
{
if (in == '(')
return was+"\\(";
if (in == ')')
return was+"\\)";
return was+in;
};

int main()
{
std::string foo("(abc)|(tot o)|(lala)");
std::string bar = std::accumulate (foo.begin(), foo.end(),
std::string("") , changer);
std::cout << bar;
}

Jul 22 '05 #6
"Jason Heyes" <ja********@opt usnet.com.au> wrote in message
news:419b27d6$0 $27445
"Siemel Naran" <Si*********@RE MOVE.att.net> wrote in message

string s2;
transform(s.beg in(), s.end(), special_back_in serter(s2));


Nice. It all happens in one line of STL. I wonder how these STL solutions
compare with non-STL ones in terms of code complexity. Alot better I
presume.


Except for the meaningless name 'special_back_i nserter', the code above
looks simpler. However, it's not an inplace algorithm, therefore uses more
memory. John's suggestion is in in-place algorithm, though harder to
implement.
Jul 22 '05 #7

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

Similar topics

19
22719
by: Espen Ruud Schultz | last post by:
Lets say I have a char pointer and an std::string. Is it possible to get a pointer to the std::string's "content" so that the char pointer can point to the same text? And vice versa; can I give the std::string a pointer and a length and then give the std::string control over the pointer and its content? I'm basically trying to avoid copying large text between an std::string and a char pointer, and vice versa. Is there anyhing in the...
11
3632
by: Christopher Benson-Manica | last post by:
Let's say I have a std::string, and I want to replace all the ',' characters with " or ", i.e. "A,B,C" -> "A or B or C". Is the following the best way to do it? int idx; while( (idx=str.find_first_of(',')) >= 0 ) { str.replace( idx, 1, "" ); str.insert( idx, " or " ); }
19
6133
by: Erik Wikström | last post by:
First of all, forgive me if this is the wrong place to ask this question, if it's a stupid question (it's my second week with C++), or if this is answered some place else (I've searched but not found anything). Here's the problem, I have two sets of files, the name of a file contains a number which is unique for each set but it's possible (even probable) that two files in different sets have the same numbers. I want to store these...
16
16405
by: Khuong Dinh Pham | last post by:
I have the contents of an image of type std::string. How can I make a CxImage object with this type. The parameters to CxImage is: CxImage(byte* data, DWORD size) Thx in advance
12
13568
by: jl_post | last post by:
Dear C++ community, I have a question regarding the size of C++ std::strings. Basically, I compiled the following code under two different compilers: std::string someString = "Hello, world!"; int size1 = sizeof(std::string); int size2 = sizeof(someString); and printed out the values of size1 and size2. size1 and size2 always
2
4801
by: zhege | last post by:
I am a beginner of C++; I have a question about the std:string and std:cout class; Two pieces of code: -------------------------------- #include <iostream> #include <string> using namespace std; int main()
1
1720
by: zhege | last post by:
I am a beginner of C++; I have a question about the std:string and std:cout class; Two pieces of code: -------------------------------- #include <iostream> #include <string> using namespace std; int main()
8
8310
by: vidya.bhagwath | last post by:
Hello Experts, I am using std::string object as a member variable in one of the my class. The same class member function operates on the std::string object and it appends some string to that object. My sample code is as follows. ..h file content---------- #include <stdio.h>
84
15830
by: Peter Olcott | last post by:
Is there anyway of doing this besides making my own string from scratch? union AnyType { std::string String; double Number; };
25
8329
by: Bala2508 | last post by:
Hi, I have a C++ application that extensively uses std::string and std::ostringstream in somewhat similar manner as below std::string msgHeader; msgHeader = "<"; msgHeader += a; msgHeader += "><";
0
7924
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
7854
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8349
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
7978
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
3845
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
3882
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2364
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 we have to send another system
1
1455
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
1192
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 can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.