char* clean_string (char *input_string){
  /*Ensure that input string isn't null and only do heavy lifting if it's not null*/
  if (input_string){
    char *stripped;
    stripped = (char*)malloc(strlen(input_string)*sizeof(char));
    while (*input_string != '\0'){
      if isalpha(*input_string){
        *stripped = toupper(*input_string);
    input_string++;
    stripped++;
      } else {
        input_string++;
    }
  }
/*       *stripped++ += '\0';*/
   return stripped;
  }
 /*default return val*/  
return NULL;
}

Can anybody tell me where I'm going wrong with this? Tried to do a test run and it doesn't output anything when I try to call it.

link|improve this question
What do you mean by "output"? – littleadv Sep 15 '11 at 7:04
store the initial value of the pointer stripped and return that pointer and uncomment the part *stripped++ += '\0'; – reader_1000 Sep 15 '11 at 7:07
Try to post compilable code: if isalpha(*input_string){ does not compile! – Jonathan Leffler Sep 15 '11 at 7:13
Got it fixed and working thanks to everyone's input. – diz Sep 15 '11 at 16:13
feedback

4 Answers

up vote 7 down vote accepted

You are returning a pointer to the last character in the string (stripped++ ?).
You are allocating one byte too few (should be strlen(...) + 1).

stripped = (char*)malloc(strlen(input_string)*sizeof(char)); /* Wrong. */
stripped = (char*)malloc(strlen(input_string) + 1);

/* .. */
stripped++;

/* .. */
return stripped;

Try to keep a copy, something like original_stripped = stripped before starting to change stripped, and return the copied value (not the incremented one).

link|improve this answer
5  
+1, but sizeof(char) is guaranteed 1 so can be omitted. – Jon Sep 15 '11 at 7:07
@Jonathan Leffler Thanks for editing :-) – cnicutar Sep 15 '11 at 7:17
Thank you very much for this Jonathan. I knew that I was just about "there" but in my tiredness couldn't see that my malloc was a little off. I figured it might be. – diz Sep 15 '11 at 14:06
feedback

The problem is with calling stripped++. You are modifying the pointer you get by malloc. Make an extra pointer char *result_char = stripped; and use that for iteration over resulting string.

link|improve this answer
feedback

The problem ís that you increment your stripped variable before returning it. Try:

char *stripped; 
char *result;
stripped = (char*)malloc(strlen(input_string)*sizeof(char)); 
result = stripped;
...
return result; 
link|improve this answer
feedback

How about just:

    char* clean_string (char *input_string)
    {
      /*Ensure that input string isn't null and only do heavy lifting if it's not null*/
        if (input_string)
        {
            char *stripped;
            int i;

            stripped = (char*)malloc(strlen(input_string)*sizeof(char) + 1);

            for(i=0; i < strlen(input_string); i++)
                stripped[i] = (isalpha(input_string[i]) ? toupper(input_string[i]) : input_string[i]);

            return stripped;
        }
     /*default return val*/  


return NULL;
}
link|improve this answer
1  
Even the 'isalpha' function call is useless. 'toupper' function automatically check whether the character is alphabetic. – Sanjeev Sep 15 '11 at 7:45
'sizeof(char)' is useless as well (it is defined as being 1) – Luther Blissett Sep 15 '11 at 8:08
True but there is no overhead as compiler replaces it with appropriate char size (according to architecture) during compile time. While 'isalpha' will or won't be made inline according to the compiler decisions. Again, the code's prettier with 'sizeof(char)' (; – Sanjeev Sep 15 '11 at 8:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.