vote up 2 vote down star
1

I wrote this function that's supposed to do StringPadRight("Hello", 10, "0") -> "Hello00000".

char *StringPadRight(char *string, int padded_len, char *pad) {
    int len = (int) strlen(string);
    if (len >= padded_len) {
        return string;
    }
    int i;
    for (i = 0; i < padded_len - len; i++) {
        strcat(string, pad);
    }
    return string;
}

It works but has some weird side effects... some of the other variables get changed. How can I fix this?

flag

6 Answers

vote up 6 vote down check

It might be helpful to know that printf does padding for you, using %-10s as the format string will pad the input right in a field 10 characters long

printf("|%-10s|", "Hello");

will output

|Hello     |

In this case the - symbol means "Right align", the 10 means "Ten characters in field" and the s means you are aligning a string.

Printf style formatting is available in many languages and has plenty of references on the web. Here is one of many pages explaining the formatting flags. This one has more examples. As usual WikiPedia's printf page is of help too (mostly a history lesson of how widely printf has spread).

link|flag
vote up 0 vote down

Some bugs are in your code

  1. You pass a string literal, which is not guaranteed to be writable. It is in fact undefined behaivor to write to them
  2. You need to document for your function that extra memory should be provided for the padding characters.

You can fix them by allocating memory in the caller. But consider the performance lost you gain by using malloc, since it dynamically fetches memory from the OS. But actually, most of the time, you won't notice this as malloc & free is usually buffered and highly optimized for many calls until a new system call is made. Here is how you could do it:

char * string_pad(char * string, size_t padlen, char * pad) {
    size_t lenstring = strlen(string);
    size_t lenpad = strlen(pad);

    char * padded = (char*)malloc(lenstring + lenpad + 1);
    strncpy(padded, string, lenstring); /* copy without '\0' */
    padded += lenstring; /* prepare for first append of pad */
    for(padlen += 1; padlen > 0; padlen--, padded += lenpad)
        strncpy(padded, pad, lenpad);
    *padded = '\0';
    return padded;
}

Edit: I figured the length parameter means something else in your snippet. Never mentioned :) I will leave this commentar here anyway as a community wiki. Maybe someone can make use of it.

link|flag
vote up 0 vote down

Oh okay, makes sense. So I did this:

    char foo[10] = "hello";
    char padded[16];
    strcpy(padded, foo);
    printf("%s", StringPadRight(padded, 15, " "));

Thanks!

link|flag
vote up 0 vote down

The function itself looks fine to me. The problem could be that you aren't allocating enough space for your string to pad that many characters onto it. You could avoid this problem in the future by passing a size_of_string argument to the function and make sure you don't pad the string when the length is about to be greater than the size.

link|flag
vote up 2 vote down

You must make sure that the input string has enough space to hold all the padding characters. Try this:

char hello[11] = "Hello";
StringPadRight(hello, 10, "0");

Note that I allocated 11 bytes for the hello string to account for the null terminator at the end.

link|flag
vote up 0 vote down

The argument you passed "Hello" is on the constant data area. Unless you've allocated enough memory to char * string, it's overrunning to other variables.

char buffer[1024];
memset(buffer, 0, sizeof(buffer));
strncpy(buffer, "Hello", sizeof(buffer));
StringPadRight(buffer, 10, "0");

Edit: Corrected from stack to constant data area.

link|flag
You're still passing a string literal... :P – jeremy Ruten Nov 10 '08 at 1:33
I noticed that too. Funny. – eed3si9n Nov 10 '08 at 1:33
you are copying too much. Hello is of type char[6] , but you try to copy 1024 bytes out of it. that can only fail. change it to read sizeof "Hello" instead of the second sizeof(buffer) – Johannes Schaub - litb Nov 10 '08 at 1:52
strncpy(buffer, "Hello", sizeof(buffer)); already fills the entire buffer with '\0', so your memset() is redundant. – Chris Young Nov 10 '08 at 6:24
@litb, strncpy: If the end of the source C string (which is signaled by a null-character) is found before num characters have been copied, destination is padded with zeros until a total of num characters have been written to it. – eed3si9n Nov 10 '08 at 8:34
show 1 more comment

Your Answer

Get an OpenID
or

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