Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

parse comma delimited text string

0 views
Skip to first unread message

electrixnow

unread,
Feb 7, 2006, 12:52:05 AM2/7/06
to
in MS VC++ Express I need to know how to get from one comma delimited
text string to many strings.

from this:

main_string = "onE,Two,Three , fouR,five, six "

to these:

string1 = "one"
string2 = "two"
string3 = "three"
string4 = "four"
string5 = "five"
string6 = "six"

the white space needs to be removed and the case needs to be all upper
or lower.
The result needs to be strings and not pointers or addresses in memory
so I can test:

string test = "three";

if (three == "three")

some getlines will only have two strings some may have up to 10


Please help with examples, you input with exact syntax is greatly
appreciated

I have been struggling with not using pointers but every time I end up
using them.

Thanks in advance

Ian Collins

unread,
Feb 7, 2006, 1:49:42 AM2/7/06
to
electrixnow wrote:
> in MS VC++ Express I need to know how to get from one comma delimited
> text string to many strings.
>
> from this:
>
> main_string = "onE,Two,Three , fouR,five, six "
>
> to these:
>
> string1 = "one"
> string2 = "two"
> string3 = "three"
> string4 = "four"
> string5 = "five"
> string6 = "six"
>
For this, a couple of options are the good old C strtok, or the
std::string find members.

> the white space needs to be removed and the case needs to be all upper
> or lower.

See toxxxx() and isxxx() functions.

Looks too much like homework to me...

--
Ian Collins.

electrixnow

unread,
Feb 7, 2006, 5:22:43 AM2/7/06
to
Howework, not even close. I am an 42 year old EE and not really a
programmer. I have an application at work to apply this to. I am trying
to compare two data files and create a third to let my department know
when new releases for drawing are ready. I have tried strtok, and
strtok_s but those functions allways create pointers. That is fine if I
knew how to easly change them back to STRINGS for string comparison. By
the way we have the same last name, that's wierd.

been out of school for too many years!

The only coding I have done was born, corn and c shell in the 80's. C++
is so much more robust, I am trying to learn more. I just purchased a
book C++ without fear. If you have any suggestions for books for VC++
let me know.

what is the best way to compare text strings like this:

if ( "test string" == pointer_returned_from_strtok )

that will get me going in the right directions.

Thanks!

Ben Pope

unread,
Feb 7, 2006, 5:39:34 AM2/7/06
to
electrixnow wrote:
> Howework, not even close. I am an 42 year old EE and not really a
> programmer. I have an application at work to apply this to. I am trying
> to compare two data files and create a third to let my department know
> when new releases for drawing are ready. I have tried strtok, and
> strtok_s but those functions allways create pointers. That is fine if I
> knew how to easly change them back to STRINGS for string comparison. By

#include <string>
#include <iostream>

int main() {
// C style string
char mystring[] = "hello world";

// pointer to null terminated token
char* token = mystring + 6;

// create string from token
std::string newString(token);

if (newString == "world") {
std::cout << "Comparison True" << std::endl;
} else {
std::cout << "Comparison Fasle" << std::endl;
}
}

> The only coding I have done was born, corn and c shell in the 80's. C++
> is so much more robust, I am trying to learn more. I just purchased a
> book C++ without fear. If you have any suggestions for books for VC++
> let me know.

Accelerated C++, by Koenig and Moo.

> what is the best way to compare text strings like this:
>
> if ( "test string" == pointer_returned_from_strtok )

// create string on the fly
if ("test string" == std::string(pointer_returned_from_strtok))

> that will get me going in the right directions.

Off you go then! :)

Ben Pope
--
I'm not just a number. To many, I'm known as a string...

Alf P. Steinbach

unread,
Feb 7, 2006, 6:05:54 AM2/7/06
to
* electrixnow:

std::string uppercase( std::string const& s )
{
std::string result = s;
for( std::size_t i = 0; i < s.length(); ++i )
{
result[i] = static_cast<char>( std::toupper( s[i] ) );
}
return result;
}

typedef std::vector<std::string> StringVector;

StringVector stringsFrom( std::string s )
{
std::replace( s.begin(), s.end(), ',', ' ' );
std::istringstream stream( s );
StringVector result;
for( ;; )
{
std::string word;
if( !( stream >> word ) ) { break; }
result.push_back( uppercase( word ) );
}
return result;
}

--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?

Sumit Rajan

unread,
Feb 7, 2006, 6:13:45 AM2/7/06
to

"electrixnow" <info...@charter.net> wrote in message
news:1139291525....@g47g2000cwa.googlegroups.com...

> in MS VC++ Express I need to know how to get from one comma delimited
> text string to many strings.
>
> from this:
>
> main_string = "onE,Two,Three , fouR,five, six "

You could try something like this:


#include <string>
#include <iostream>
#include <sstream>
#include <algorithm>
#include <cctype>


void trim(std::string& str)
{
std::string::size_type idx = str.find_first_not_of(' ');
if (idx != std::string::npos) {
str.erase(0, idx);
}
idx = str.find_last_not_of(' ');
if (idx != std::string::npos) {
str.erase(idx+1, str.size()-1);
}
}

int main()
{
std::string main_string = "onE,Two,Three , fouR,five, six ,,
d, , ";

std::istringstream iss(main_string);
std::string tok;

while (getline(iss, tok, ',')) {
std::transform(tok.begin(), tok.end(), tok.begin(),
std::tolower);
trim(tok);
std::cout << '!' << tok << "!\n";
}
}

Regards,
Sumit.
--
Sumit Rajan <sum...@msdc.hcltech.com>


Sumit Rajan

unread,
Feb 7, 2006, 6:19:39 AM2/7/06
to

"Sumit Rajan" <sumit...@gmail.com> wrote in message
news:44rdnjF...@individual.net...

> void trim(std::string& str)
> {
> std::string::size_type idx = str.find_first_not_of(' ');
> if (idx != std::string::npos) {
> str.erase(0, idx);
> }
> idx = str.find_last_not_of(' ');
> if (idx != std::string::npos) {
> str.erase(idx+1, str.size()-1);
> }
> }

Sorry, this function has a bug. May be simplest to use an std::istringstream
as you will see in Alf's post.

Sumit Rajan

unread,
Feb 7, 2006, 6:32:18 AM2/7/06
to

"Sumit Rajan" <sumit...@gmail.com> wrote in message
news:44rdnjF...@individual.net...
> void trim(std::string& str)
> {
> std::string::size_type idx = str.find_first_not_of(' ');
> if (idx != std::string::npos) {
> str.erase(0, idx);
> }
> idx = str.find_last_not_of(' ');
> if (idx != std::string::npos) {
> str.erase(idx+1, str.size()-1);
> }
> }
>
>
>

void trim(std::string& str)
{
while((!str.empty()) && isspace(str[0])) {
str.erase(0, 1);
}
std::string::size_type idx = str.find_last_not_of(' ');
if (!((idx == std::string::npos)||(idx == str[str.size()-1]))) {
str.erase(idx+1, str.size()-1);

Daniel T.

unread,
Feb 7, 2006, 9:43:20 AM2/7/06
to
In article <1139291525....@g47g2000cwa.googlegroups.com>,
"electrixnow" <info...@charter.net> wrote:

Assuming there are no spaces other than the ones just before or just
after the commas, the following will work:

template < typename Out >
void fn( string str, Out it )
{
int (*lower)(int) = &tolower;
transform( str.begin(), str.end(), str.begin(), lower );
replace( str.begin(), str.end(), ',', ' ' );
stringstream ss( str );
copy( istream_iterator<string>( ss ), istream_iterator<string>(),
it );
}

Call the above with a container that has the space or using a
back_inserter. For example:

vector<string> vec;
fn( main_string, back_inserter( vec ) );

The only magic is replacing the comma's with spaces so that the
stringstream will ignore them.


If there are spaces that must be saved then the above won't work. For
example:

main_string = "John Smith, Mark Allen ,Joe";

If the above needs to be parsed to:
vec[0] = "john smith"
vec[1] = "mark allen"
vec[2] = "joe"

Here we can't just dump the commas...

// returns a string that has had the whitespace at the front
// and back removed without disturbing the whitespace in the middle
string strip( string str )
{
const char* const whitespace = " \t";
str.erase( 0, str.find_first_not_of( whitespace ) );
string::size_type pos = str.find_last_not_of( whitespace );
if ( pos != string::npos )
str.erase( pos + 1 );
return str;
}

template < typename Out >
void foo( string str, Out it )
{
int (*lower)(int) = &tolower;
transform( str.begin(), str.end(), str.begin(), lower );
string::size_type prev = 0;
for ( string::size_type pos = str.find( ',' ); pos != string::npos;
pos = str.find( ',', prev ) )
{
string s = strip( str.substr( prev, pos - prev ) );
it++ = s;
prev = pos + 1;
}
string s = strip( str.substr( prev ) );
it = s;
}

--
Magic depends on tradition and belief. It does not welcome observation,
nor does it profit by experiment. On the other hand, science is based
on experience; it is open to correction by observation and experiment.

Daniel T.

unread,
Feb 7, 2006, 10:11:57 AM2/7/06
to
In article <postmaster-B3621...@news.east.earthlink.net>,
"Daniel T." <postm...@earthlink.net> wrote:

I liked Sumit Rajan's use of getline... Modified my code to use it.

string& strip( string& str )


{
const char* const whitespace = " \t";
str.erase( 0, str.find_first_not_of( whitespace ) );
string::size_type pos = str.find_last_not_of( whitespace );
if ( pos != string::npos )
str.erase( pos + 1 );
return str;
}

template < typename Out >


void fn( string str, Out it )
{
int (*lower)(int) = &tolower;
transform( str.begin(), str.end(), str.begin(), lower );

stringstream ss( str );
string s;
while ( getline( ss, s, ',' ) )
it++ = strip( s );

Daniel T.

unread,
Feb 7, 2006, 10:16:59 AM2/7/06
to
In article <44re2kF...@individual.net>,
"Sumit Rajan" <sumit...@gmail.com> wrote:

What bug do you see? The only bug I can find is that if 'str' is nothing
but spaces then the function doesn't do anything.

Shaun

unread,
Feb 7, 2006, 11:07:26 AM2/7/06
to
Since your using VC++ express, are you using standard C++ or C++/CLI?
I ask becasue if your using the managed String classes, you can very
easily do what you wish as follows:

System::String^ s = "1,2,3,4,5";
cli::array<System::String^>^ s2 = s->Split(',');
// now use s2[0]...s2[s2->Length] as needed.

If using standard C++, then the suggestions already provided by the
other posters are worth considering.

Roland Pibinger

unread,
Feb 7, 2006, 3:45:52 PM2/7/06
to
On Tue, 07 Feb 2006 11:05:54 GMT, al...@start.no (Alf P. Steinbach)
wrote:

>StringVector stringsFrom( std::string s )
>{
> std::replace( s.begin(), s.end(), ',', ' ' );
> std::istringstream stream( s );
> StringVector result;
> for( ;; )
> {
> std::string word;
> if( !( stream >> word ) ) { break; }
> result.push_back( uppercase( word ) );
> }
> return result;
>}

Alternative string tokenizers can be found here:
http://groups.google.com/group/comp.lang.c++.moderated/msg/701facd98f07f527?hl=en

Best regards,
Roland Pibinger

Dietmar Kuehl

unread,
Feb 7, 2006, 7:09:51 PM2/7/06
to
electrixnow wrote:
> the white space needs to be removed and the case needs to be all upper
> or lower.

My favorite approach would be to use a filtering stream buffer
to do the clean-up and use normal string input functions otherwise:

#include <iostream>
#include <streambuf>
#include <algorithm>
#include <iterator>
#include <string>
#include <vector>
#include <stdlib.h>

char clean(char i)
{
return i == ','? ' '
: std::tolower(static_cast<unsigned char>(i));
}

struct cleanbuf:
std::streambuf
{
enum { s_size = 1024 };
cleanbuf(std::streambuf* sbuf): m_sbuf(sbuf) {}
int underflow()
{
std::streamsize size = m_sbuf->sgetn(m_buf, s_size);
setg(m_buf, m_buf, m_buf + size);
std::transform(m_buf + 0, m_buf + size, m_buf, clean);
return gptr() == egptr()
? std::char_traits<char>::eof(): *gptr();
}
private:
std::streambuf* m_sbuf;
char m_buf[s_size];
};

int main()
{
cleanbuf sbuf(std::cin.rdbuf());
std::istream in(&sbuf);
std::vector<std::string> strs(
(std::istream_iterator<std::string>(in)),
(std::istream_iterator<std::string>()));
std::copy(strs.begin(), strs.end(),
std::ostream_iterator<std::string>(std::cout, "\n"));
}
~
--
<mailto:dietma...@yahoo.com> <http://www.dietmar-kuehl.de/>
<http://www.eai-systems.com> - Efficient Artificial Intelligence

Sumit Rajan

unread,
Feb 7, 2006, 9:35:31 PM2/7/06
to

"Daniel T." <postm...@earthlink.net> wrote in message
news:postmaster-4FABD...@news.east.earthlink.net...

> What bug do you see? The only bug I can find is that if 'str' is nothing
> but spaces then the function doesn't do anything.

Precisely. My other post on this thread takes care of it.

Regards,

Daniel T.

unread,
Feb 7, 2006, 9:50:49 PM2/7/06
to
In article <44t3nsF...@individual.net>,
"Sumit Rajan" <sumit...@gmail.com> wrote:

> "Daniel T." <postm...@earthlink.net> wrote in message
> news:postmaster-4FABD...@news.east.earthlink.net...
>
> > What bug do you see? The only bug I can find is that if 'str' is nothing
> > but spaces then the function doesn't do anything.
>
> Precisely. My other post on this thread takes care of it.

I think your other post was more complicated than necessary...

str.erase( 0, str.find_first_not_of( whitespace ) );

Takes care if it without the extra conditionals/loops.

Daniel T.

unread,
Feb 7, 2006, 11:28:55 PM2/7/06
to
In article <44sr76F...@individual.net>,
Dietmar Kuehl <dietma...@yahoo.com> wrote:

> electrixnow wrote:
> > the white space needs to be removed and the case needs to be all upper
> > or lower.
>
> My favorite approach would be to use a filtering stream buffer
> to do the clean-up and use normal string input functions otherwise:

Unfortunately, your code doesn't compile on my system. I had to change
the vector<string> c_tor call to:

vector<string> strs;
copy ( istream_iterator<string>(in), istream_iterator<string>(),
back_inserter(strs) );

Also, your code only works for the simple case, where there is no
whitespace *within* a string delimited by commas. How would you change
it to account for the more complicated case?

The nice thing about your code is that it does everything in a single
pass whereas the code I presented to date requires two passes (one to
call tolower, and a second to remove the commas.) It would be a simple
change to make mine one pass as well...

template < typename Out >
void fn( string str, Out it )
{

transform( str.begin(), str.end(), str.begin(), clean );
// the above uses your 'clean' function.


stringstream ss( str );
copy( istream_iterator<string>( ss ), istream_iterator<string>(),
it );
}

This seems much more straight forward and needs fewer lines of code.

I must say that every contribution so far has shed new light on the
problem for me and caused me to improve my code in some way. IMHO, this
is usenet at its best.

--

Sumit Rajan

unread,
Feb 7, 2006, 11:46:50 PM2/7/06
to

"Daniel T." <postm...@earthlink.net> wrote in message
news:postmaster-CCC3D...@news.east.earthlink.net...

> I think your other post was more complicated than necessary...
>
> str.erase( 0, str.find_first_not_of( whitespace ) );
>
> Takes care if it without the extra conditionals/loops.

True. This one is far more reader-friendly.

Dietmar Kuehl

unread,
Feb 8, 2006, 4:35:22 AM2/8/06
to
Daniel T. wrote:
> Unfortunately, your code doesn't compile on my system. I had to change
> the vector<string> c_tor call to:
>
> vector<string> strs;
> copy ( istream_iterator<string>(in), istream_iterator<string>(),
> back_inserter(strs) );

In this case your compiler or the standard library implementation is
broken: the standard container classes are defined to accept pairs of
input iterators as constructor arguments.

> Also, your code only works for the simple case, where there is no
> whitespace *within* a string delimited by commas. How would you change
> it to account for the more complicated case?

This is a rather different specification which, in particular, does
not yet account for whitespace at the beginning or the end of the
string: is this whitespace to be removed or not? Since commas work
as true delimiters here, I assume it is to be included. I this case
I would [temporarily] 'imbue()' a 'std::ctype<char>' facet which
only considers comma and possibly newline (if this is also considered
a separator). The extractor functions use whitespaces as field
separators for strings. If the case adjustment is still necessary,
I would use the modified facet in combination with the filtering
stream buffer.

> This seems much more straight forward and needs fewer lines of code.

Injecting existing filtering stream buffers into the processing is
pretty straight forward. Of course, writing them is not necessarily
so but it is not that hard either. The real advantage I see in the
filtering stream buffer over your code is that it encapsulates the
complete solution, especially if it is also equipped with a simple
input stream which automatically maintains the stream buffer.

> I must say that every contribution so far has shed new light on the
> problem for me and caused me to improve my code in some way.

This was my intention of posting the code...

Dietmar Kuehl

unread,
Feb 8, 2006, 4:42:23 AM2/8/06
to
Daniel T. wrote:
>> int (*lower)(int) = &tolower;
>> transform( str.begin(), str.end(), str.begin(), lower );

Note that this does *NOT* work! The argument to 'std::tolower()'
has to be an *unsigned* value. However, on platforms where 'char'
is signed, the argument could expand to a negative value! In
portable code, the only valid call to 'std::tolower(int)' with a
'char' looks like this:

std::tolower(static_cast<unsigned char>(c));

The only possible variation is how the 'char' is first cast to
an 'unsigned char'.

Dietmar Kuehl

unread,
Feb 8, 2006, 5:06:15 AM2/8/06
to
Alf P. Steinbach wrote:
> result[i] = static_cast<char>( std::toupper( s[i] ) );

The above line shall read

result[i] = std::toupper( static_cast<unsigned char>(s[i]));

While the compiler automatically takes care of the conversion from
'char' to 'int', it could produce negative values on systems where
'char' is a signed type without the explicit conversion to 'unsigned
char'. However, 'std::toupper(int)' only accepts positive values
making it necessary to convert the 'char' to an 'unsigned char'
first.

Daniel T.

unread,
Feb 8, 2006, 7:55:26 AM2/8/06
to
In article <44tsomF...@individual.net>,
Dietmar Kuehl <dietma...@yahoo.com> wrote:

> Daniel T. wrote:
> >> int (*lower)(int) = &tolower;
> >> transform( str.begin(), str.end(), str.begin(), lower );
>
> Note that this does *NOT* work! The argument to 'std::tolower()'
> has to be an *unsigned* value. However, on platforms where 'char'
> is signed, the argument could expand to a negative value! In
> portable code, the only valid call to 'std::tolower(int)' with a
> 'char' looks like this:
>
> std::tolower(static_cast<unsigned char>(c));
>
> The only possible variation is how the 'char' is first cast to
> an 'unsigned char'.

That is only necessary if one is using an extended character set. For
all ASCII characters, "tolower( c )" will work just fine. In order to
write portable code, one must not use an extended character set, making
the cast will not magically make it portable.

Daniel T.

unread,
Feb 8, 2006, 9:01:41 AM2/8/06
to
In article <44tsbhF...@individual.net>,
Dietmar Kuehl <dietma...@yahoo.com> wrote:

> Injecting existing filtering stream buffers into the processing is
> pretty straight forward. Of course, writing them is not necessarily
> so but it is not that hard either. The real advantage I see in the
> filtering stream buffer over your code is that it encapsulates the
> complete solution, especially if it is also equipped with a simple
> input stream which automatically maintains the stream buffer.

I read up on streambuf's last night. Although, your solution does work,
I think it is inappropriate. Stream Buffers are supposed to represent
buffering strategies for different kinds of streams, not conversion
strategies.

Both of our codes encapsulated the complete solution.

Dietmar Kuehl

unread,
Feb 8, 2006, 10:19:51 AM2/8/06
to
Daniel T. wrote:
> I read up on streambuf's last night.

Just out if interest: where did you read up on them?

> Although, your solution does work,
> I think it is inappropriate. Stream Buffers are supposed to represent
> buffering strategies for different kinds of streams, not conversion
> strategies.

Stream buffers are intended to represent streams of characters.
When streaming characters, it is quite common to transform them
in some way. Actually, this is the basis of UNIX' approach to
filters. My code effectively just did the moral equivalent of
"tr 'A-Z,' 'a-z '" which is, IMO, an entirely appropriate use
of streams.

In fact, even at the very basis of file streams, (i.e. in the
class template 'std::basic_filebuf') a heavy conversion mechanism
is employed which converts bytes read from a file into characters
used within an application or vice versa. This uses 'std::codecvt'
facets and it would be an easy typing exercise to inject the
conversion I implemented in the stream buffer into a corresponding
facet.

> Both of our codes encapsulated the complete solution.

Well, I somewhat disagree with this statement but then, the
problem was trivial enough that it may not be worth to encapsulate
the solution further than you did.

Julián Albo

unread,
Feb 8, 2006, 11:26:52 AM2/8/06
to
Daniel T. wrote:

> That is only necessary if one is using an extended character set. For
> all ASCII characters, "tolower( c )" will work just fine. In order to
> write portable code, one must not use an extended character set, making
> the cast will not magically make it portable.

As far as I know, standard C++ does not privilege the ascii charset in any
way, nor any other 0-127 charset.

Of course you have less problems if you know for sure that all your users
use ascii. But you will also have less users.

--
Salu2

Alf P. Steinbach

unread,
Feb 8, 2006, 4:19:24 PM2/8/06
to
* Dietmar Kuehl:

> Alf P. Steinbach wrote:
> > result[i] = static_cast<char>( std::toupper( s[i] ) );
>
> The above line shall read
>
> result[i] = std::toupper( static_cast<unsigned char>(s[i]));
>

Thanks for that correction, it was a screw-up.


> While the compiler automatically takes care of the conversion from
> 'char' to 'int', it could produce negative values on systems where
> 'char' is a signed type without the explicit conversion to 'unsigned
> char'. However, 'std::toupper(int)' only accepts positive values

And EOF. ;-)


> making it necessary to convert the 'char' to an 'unsigned char'
> first.

--

0 new messages