Is there a way to only print part of a string?

For example, if I have

char *str = "hello there";

Is there a way to just print "hello", keeping in mind that the substring I want to print is variable length, not always 5 chars?

I know that I could use a for loop and putchar or that I could copy the array and then add a null-terminator but I'm wondering if there's a more elegant way?

link|improve this question
what's the character or criteria you want to stop on? it's hard to answer this question without clarification – kelloti Jan 30 '11 at 4:55
feedback

4 Answers

Try this:

int length = 5;
printf("%*.*s", length, length, "hello there");
link|improve this answer
I was 7 seconds too slow =) – SiegeX Jan 30 '11 at 4:56
@SiegeX: Yup - adding the include <stdio.h>\nintmain(void)\n{ did you in... :-) – Jerry Coffin Jan 30 '11 at 4:59
Of course, if he wants to print to stderr, or a file, or to a label in some GUI, classic printf won't help. Maybe make a note of sprintf/fprintf too? – Chris Charabaruk Jan 30 '11 at 5:02
@Chris Charagaruk: Quite true -- but given that he mentioned putchar, printing to stdout seemed reasonable. – Jerry Coffin Jan 30 '11 at 5:04
1  
@Chria Charabaruk: Quite true -- but I tend to presume that he also realizes that sprintf, fprintf, etc., all use the same formatting as printf... – Jerry Coffin Jan 30 '11 at 5:12
show 1 more comment
feedback

This will work too:

fwrite(str, 1, len, stdout);

It will not have the overhead of parsing the format specifier. Obviously, to adjust the beginning of the substring, you can simply add the index to the pointer.

link|improve this answer
feedback

printf and friends work well when that's all you want to do with the partial string, but for a more general solution:

char *s2 = s + offset;
char c = s2[length]; // Temporarily save character...
s2[length] = '\0';   // ...that will be replaced by a NULL
f(s2);  // Now do whatever you want with the temporarily truncated string
s2[length] = c;      // Finally, restore the character that we had saved
link|improve this answer
1  
This will give UB if you pass a string literal (which is what the OP shows...) – Jerry Coffin Jan 30 '11 at 5:11
feedback

You can use strncpy to duplicate the part of your string you want to print, but you'd have to take care to add a null terminator, as strncpy won't do that if it doesn't encounter one in the source string. A better solution, as Jerry Coffin pointed out, is using the appropriate *printf function to write out or copy the substring you want.

While strncpy can be dangerous in the hands of someone not used to it, it can be quicker in terms of execution time compared to a printf/sprintf/fprintf style solution, since there is none of the overhead of dealing with the formatting strings. My suggestion is to avoid strncpy if you can, but it's good to know about just in case.

size_t len = 5;
char sub[6];
sub[5] = 0;
strncpy(sub, str + 5, len); // char[] to copy to, char[] to copy from(plus offset
                            // to first character desired), length you want to copy
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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