Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > C++ > Need to write a function that adjusts words in a string array

Reply
Thread Tools

Need to write a function that adjusts words in a string array

 
 
Rick
Guest
Posts: n/a
 
      11-24-2003
I have a program that reads from a file. In the file are a series of
words. I read in all the words into a string array, find the average
length, count the number of words, display the longest word and how long
it is, and display the smallest word and how long it is. All that is
working fine, but what I need to do it format certain words that contain
a period at the end of them (ex: a word at the end of a sentence), words
with quotes around them, exclamation points, etc. If a word has one of
these characters anywhere but the beginning or end it is ok. Also, say
you have this word: one." It needs to be changed to: one

The word: don't is ok because the "'" isn't at the beginning or end.

 
Reply With Quote
 
 
 
 
Henk Burgstra
Guest
Posts: n/a
 
      11-24-2003
On Mon, 24 Nov 2003 15:23:46 -0800, Rick wrote:

> I have a program that reads from a file. In the file are a series of
> words. I read in all the words into a string array, find the average
> length, count the number of words, display the longest word and how long
> it is, and display the smallest word and how long it is. All that is
> working fine, but what I need to do it format certain words that contain
> a period at the end of them (ex: a word at the end of a sentence), words
> with quotes around them, exclamation points, etc. If a word has one of
> these characters anywhere but the beginning or end it is ok. Also, say
> you have this word: one." It needs to be changed to: one
>
> The word: don't is ok because the "'" isn't at the beginning or end.


That task can easily be accomplished with regular expressions. Look at
Regex++ (http://www.boost.org/libs/regex/index.htm), included in Boost.

Regards,
Henk Burgstra
 
Reply With Quote
 
 
 
 
Rick
Guest
Posts: n/a
 
      11-25-2003
It needs to be done basically with if/for/while loops.

Henk Burgstra wrote:
> On Mon, 24 Nov 2003 15:23:46 -0800, Rick wrote:
>
>
>>I have a program that reads from a file. In the file are a series of
>>words. I read in all the words into a string array, find the average
>>length, count the number of words, display the longest word and how long
>>it is, and display the smallest word and how long it is. All that is
>>working fine, but what I need to do it format certain words that contain
>>a period at the end of them (ex: a word at the end of a sentence), words
>>with quotes around them, exclamation points, etc. If a word has one of
>>these characters anywhere but the beginning or end it is ok. Also, say
>>you have this word: one." It needs to be changed to: one
>>
>>The word: don't is ok because the "'" isn't at the beginning or end.

>
>
> That task can easily be accomplished with regular expressions. Look at
> Regex++ (http://www.boost.org/libs/regex/index.htm), included in Boost.
>
> Regards,
> Henk Burgstra


 
Reply With Quote
 
Rick
Guest
Posts: n/a
 
      11-25-2003
How do I check if tempword[0] equals a '

I get an error when I do tempword[0] == '''

How do I format it different?



void convertarray(string words[], int count)
{
//int firstpos;
int lastpos;
string tempword;
int length;

for(int i = 0; i < count; i++)
{
//firstpos = 0;
tempword = words[i];
lastpos = tempword.length() - 1;
if(tempword[0] == '!' || tempword[0] == '(' || ')' || tempword[0]
== '"' || tempword[0] == '?' ||
tempword[0] == '.' || tempword[0] == ':' || tempword[0] == ';' ||
tempword[0] == ''' ||
tempword[0] == ',')
{
length = tempword.length();
for(int j = 0; j < length - 1; j++)
tempword[j] = tempword[j + 1];
}
}
}

Rick wrote:
> I have a program that reads from a file. In the file are a series of
> words. I read in all the words into a string array, find the average
> length, count the number of words, display the longest word and how long
> it is, and display the smallest word and how long it is. All that is
> working fine, but what I need to do it format certain words that contain
> a period at the end of them (ex: a word at the end of a sentence), words
> with quotes around them, exclamation points, etc. If a word has one of
> these characters anywhere but the beginning or end it is ok. Also, say
> you have this word: one." It needs to be changed to: one
>
> The word: don't is ok because the "'" isn't at the beginning or end.
>


 
Reply With Quote
 
Rick
Guest
Posts: n/a
 
      11-25-2003
Ok, this is what I have right now. It's not working quite properly and
I still need to check to see if the first character is a: '

For some reason every word is being converted even though some should
make the if statement false.

void convertarray(string words[], int count)
{
//int firstpos;
int lastpos;
string tempword;
int length;
bool yes;

for(int i = 0; i < count; i++)
{
tempword = words[i];
lastpos = tempword.length() - 1;
if(tempword[0] == '!' || tempword[0] == '(' || ')' || tempword[0]
== '"' || tempword[0] == '?' ||
tempword[0] == '.' || tempword[0] == ':' || tempword[0] == ';' ||
tempword[0] == ',')
{
length = tempword.length();
for(int j = 0; j < length - 1; j++)
tempword[j] = tempword[j + 1];
words[i] = tempword;
}
else
{
words[i] = tempword;
}
}
}

Rick wrote:
> How do I check if tempword[0] equals a '
>
> I get an error when I do tempword[0] == '''
>
> How do I format it different?
>
>
>
> void convertarray(string words[], int count)
> {
> //int firstpos;
> int lastpos;
> string tempword;
> int length;
>
> for(int i = 0; i < count; i++)
> {
> //firstpos = 0;
> tempword = words[i];
> lastpos = tempword.length() - 1;
> if(tempword[0] == '!' || tempword[0] == '(' || ')' || tempword[0]
> == '"' || tempword[0] == '?' ||
> tempword[0] == '.' || tempword[0] == ':' || tempword[0] == ';' ||
> tempword[0] == ''' ||
> tempword[0] == ',')
> {
> length = tempword.length();
> for(int j = 0; j < length - 1; j++)
> tempword[j] = tempword[j + 1];
> }
> }
> }
>
> Rick wrote:
>
>> I have a program that reads from a file. In the file are a series of
>> words. I read in all the words into a string array, find the average
>> length, count the number of words, display the longest word and how
>> long it is, and display the smallest word and how long it is. All
>> that is working fine, but what I need to do it format certain words
>> that contain a period at the end of them (ex: a word at the end of a
>> sentence), words with quotes around them, exclamation points, etc. If
>> a word has one of these characters anywhere but the beginning or end
>> it is ok. Also, say you have this word: one." It needs to be
>> changed to: one
>>
>> The word: don't is ok because the "'" isn't at the beginning or end.
>>

>


 
Reply With Quote
 
Jon Bell
Guest
Posts: n/a
 
      11-25-2003
In article <Mnywb.6324$ML6.1502@fed1read01>,
Rick <> wrote:
>How do I check if tempword[0] equals a '
>
>I get an error when I do tempword[0] == '''


Try tempword[0] == '\''

The backslash tells the compiler that you want it to use the second ' as a
literal character, not as a quote mark to delimit another character (its
normal function in a C++ statement).

--
Jon Bell <> Presbyterian College
Dept. of Physics and Computer Science Clinton, South Carolina USA
 
Reply With Quote
 
Rick
Guest
Posts: n/a
 
      11-25-2003
I got that, but I'm still not getting the desired output. Here is what
I have so far:

void convertarray(string words[], int count)
{
int lastpos;
string tempword;
int length;
bool yes;

for(int i = 0; i < count; i++)
{
tempword = words[i]; //file?
lastpos = tempword.length() - 1; //4
if(tempword[0] == '!' || tempword[0] == '(' || ')' || tempword[0]
== '"' || tempword[0] == '?' ||
tempword[0] == '.' || tempword[0] == ':' || tempword[0] == ';' ||
tempword[0] == ',' ||
tempword[0] == '\'')
{
cout << "first position matches" << endl;
length = tempword.length();
for(int j = 0; j < length + 1; j++)
tempword[j] = tempword[j];
words[i] = tempword;
}
if(tempword[lastpos] == '!' || tempword[lastpos] == '(' ||
tempword[lastpos] == '"' ||
tempword[lastpos] == '?' || tempword[lastpos] == '.' ||
tempword[lastpos] == ';' ||
tempword[lastpos] == ',' || tempword[lastpos] == '\'')
{
cout << "last position matches" << endl;
length = tempword.length(); //4
for(int k = 0; k < length; k++)
tempword[k] = tempword[k];//file
words[i] = tempword;
}
else
{
cout << "no position matches" << endl;
words[i] = tempword;
}
}
}

Jon Bell wrote:
> In article <Mnywb.6324$ML6.1502@fed1read01>,
> Rick <> wrote:
>
>>How do I check if tempword[0] equals a '
>>
>>I get an error when I do tempword[0] == '''

>
>
> Try tempword[0] == '\''
>
> The backslash tells the compiler that you want it to use the second ' as a
> literal character, not as a quote mark to delimit another character (its
> normal function in a C++ statement).
>


 
Reply With Quote
 
Karl Heinz Buchegger
Guest
Posts: n/a
 
      11-25-2003


Rick wrote:
>
> I got that, but I'm still not getting the desired output. Here is what
> I have so far:


Devloping debug techniques is something you need to learn.
Just in case you don't have a debugger (which would simplify
things) why not insert some output statements at strategic
positions to enable yourself to watch what the program
is doing and why.

eg.

>
> void convertarray(string words[], int count)
> {
> int lastpos;
> string tempword;
> int length;
> bool yes;
>
> for(int i = 0; i < count; i++)
> {
> tempword = words[i]; //file?
> lastpos = tempword.length() - 1; //4


cout << "word is " << tempword << endl;
cout << "lastpos: " << lastpos << endl;

> if(tempword[0] == '!' || tempword[0] == '(' || ')' || tempword[0]
> == '"' || tempword[0] == '?' ||
> tempword[0] == '.' || tempword[0] == ':' || tempword[0] == ';' ||
> tempword[0] == ',' ||
> tempword[0] == '\'')
> {
> cout << "first position matches" << endl;
> length = tempword.length();


cout << "copying first" << length << " characters" << endl;

> for(int j = 0; j < length + 1; j++)

{
cout << "copy " << tempword[j] << " (" << j << ") to position" << j << endl;

> tempword[j] = tempword[j];

}

> words[i] = tempword;


cout << "new word is " << tempword << endl;

// note: the above loop does .... nothing
// that means, of course it does something. It copies
// the j-th character to the j-th character. In the
// end tempword hasn't changed

> }
> if(tempword[lastpos] == '!' || tempword[lastpos] == '(' ||
> tempword[lastpos] == '"' ||
> tempword[lastpos] == '?' || tempword[lastpos] == '.' ||
> tempword[lastpos] == ';' ||
> tempword[lastpos] == ',' || tempword[lastpos] == '\'')
> {
> cout << "last position matches" << endl;
> length = tempword.length(); //4
> for(int k = 0; k < length; k++)
> tempword[k] = tempword[k];//file


// Here again.
// What's this loop got to do?
// it copies the k-th character from tempword to the k-th character
// in tempword. No changes in tempword result from this.
//

> words[i] = tempword;
> }
> else
> {
> cout << "no position matches" << endl;
> words[i] = tempword;
> }
> }
> }


--
Karl Heinz Buchegger

 
Reply With Quote
 
Rick
Guest
Posts: n/a
 
      11-25-2003
What should I use as a debugger? Basically I am just writing it in emacs
and compiling with g++.

"Karl Heinz Buchegger" <> wrote in message
news:...
>
>
> Rick wrote:
> >
> > I got that, but I'm still not getting the desired output. Here is what
> > I have so far:

>
> Devloping debug techniques is something you need to learn.
> Just in case you don't have a debugger (which would simplify
> things) why not insert some output statements at strategic
> positions to enable yourself to watch what the program
> is doing and why.
>
> eg.
>
> >
> > void convertarray(string words[], int count)
> > {
> > int lastpos;
> > string tempword;
> > int length;
> > bool yes;
> >
> > for(int i = 0; i < count; i++)
> > {
> > tempword = words[i]; //file?
> > lastpos = tempword.length() - 1; //4

>
> cout << "word is " << tempword << endl;
> cout << "lastpos: " << lastpos << endl;
>
> > if(tempword[0] == '!' || tempword[0] == '(' || ')' || tempword[0]
> > == '"' || tempword[0] == '?' ||
> > tempword[0] == '.' || tempword[0] == ':' || tempword[0] == ';'

||
> > tempword[0] == ',' ||
> > tempword[0] == '\'')
> > {
> > cout << "first position matches" << endl;
> > length = tempword.length();

>
> cout << "copying first" << length << " characters" << endl;
>
> > for(int j = 0; j < length + 1; j++)

> {
> cout << "copy " << tempword[j] << " (" << j << ") to position" << j <<

endl;
>
> > tempword[j] = tempword[j];

> }
>
> > words[i] = tempword;

>
> cout << "new word is " << tempword << endl;
>
> // note: the above loop does .... nothing
> // that means, of course it does something. It copies
> // the j-th character to the j-th character. In the
> // end tempword hasn't changed
>
> > }
> > if(tempword[lastpos] == '!' || tempword[lastpos] == '(' ||
> > tempword[lastpos] == '"' ||
> > tempword[lastpos] == '?' || tempword[lastpos] == '.' ||
> > tempword[lastpos] == ';' ||
> > tempword[lastpos] == ',' || tempword[lastpos] == '\'')
> > {
> > cout << "last position matches" << endl;
> > length = tempword.length(); //4
> > for(int k = 0; k < length; k++)
> > tempword[k] = tempword[k];//file

>
> // Here again.
> // What's this loop got to do?
> // it copies the k-th character from tempword to the k-th character
> // in tempword. No changes in tempword result from this.
> //
>
> > words[i] = tempword;
> > }
> > else
> > {
> > cout << "no position matches" << endl;
> > words[i] = tempword;
> > }
> > }
> > }

>
> --
> Karl Heinz Buchegger
>



 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
problem in running a basic code in python 3.3.0 that includes HTML file Satabdi Mukherjee Python 1 04-04-2013 07:48 PM
User uploads XML, page reads XML and adjusts settings all in javascript edfialk Javascript 2 08-03-2007 09:52 PM
DSLR that adjusts shutter speed w/ focal length? Richard H. Digital Photography 36 07-24-2007 05:19 AM
split camelcase string into array of words words pantagruel Javascript 8 07-22-2006 07:46 PM
custom container control (IFRAME) that adjusts it height after dynamic client-side content changes? TR ASP .Net Web Controls 0 06-03-2004 03:46 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57