Is there a way to use the C sprintf() function without it adding a '\0' character at the end of its output? I need to write formatted text in the middle of a fixed width string.
|
|
You can't do this with sprintf(), but you may be able to with snprintf(), depending on your platform. You need to know how many characters you are replacing (but as you're putting them into the middle of a string, you probably know that anyway). This works because some implementations of snprintf() do NOT guarantee that a terminating character is written - presumably for compatibility with functions like stncpy().
After this, "123" is replaced with "Joe". On implementations where snprintf() guarantees null termination even if the string is truncated, this won't work. So if code portability is a concern, you should avoid this. Most Windows-based versions of snprintf() exhibit this behaviour. But, MacOS and BSD (and maybe linux) appear to always null-terminate. |
||||||
|
|
|
There is no way to tell |
||||||||||
|
|
|
sprintf returns the length of the string written (not including the null terminal), you could use that to know where the null terminal was, and change the null terminal character to something else (ie a space). That would be more efficient than using strncpy.
|
|||
|
|
|
|
You could also use your fixed width string as a format string like this:
should yield
|
||
|
|
