C Standard Library

C <wchar.h> - swprintf() Function



The C <wchar.h> swprintf() function writes the C wide string pointed by format to a wide string buffer. If format includes format specifiers (sub-sequences beginning with %), the additional arguments following format are formatted and inserted in the resulting string replacing their respective specifiers.

After the format parameter, the function expects additional arguments at least as many as the number of format specifiers in the format string.

The size of the buffer should be large enough to contain the resulting string. A terminating null character is automatically appended after the content.

Note: This function is wide character equivalent of snprintf() function.

Syntax

int swprintf ( wchar_t* buffer, size_t size, const wchar_t* format, ... );

Parameters

buffer Specify pointer to a wide character string to write to. It should be large enough to contain the resulting string.
size Specify maximum number of wide characters to fill in the buffer. Up to size - 1 characters may be written, plus the null terminator.
size_t is an unsigned integral type.
format

Specify the format wide string. The possible values of %specifier are:

%specifierDescription
%%Returns a percent sign
%cCharacter
%dSigned decimal integer (negative, zero or positive)
%iSigned decimal integer (negative, zero or positive)
%uUnsigned decimal number (zero or positive)
%eScientific notation using a lowercase (e.g. 1.2e+3)
%EScientific notation using a uppercase (e.g. 1.2E+3)
%fDecimal floating point, lowercase
%FDecimal floating point, uppercase
%gShorter of %e and %f
%GShorter of %E and %f
%pPointer address
%oUnsigned octal
%sString of characters
%xUnsigned hexadecimal integer (lowercase letters)
%XUnsigned hexadecimal integer (uppercase letters)
%aHexadecimal floating point (lowercase letters)
%AHexadecimal floating point (uppercase letters)
%nNothing is printed. Returns the number of characters written so far by this call to the function. The result is written to the value pointed to by the argument. The corresponding argument must be a pointer to a signed int. The specification may not contain any flag, width, or precision. See the example below.

Additional format values can be placed between the % and the specifier (e.g. %.3f) also known as sub-specifier. These sub-specifier are:

  • Flags:
    • - : Left-justify within the given field width. Right justification is the default.
    • + : Prefix positive numbers with a plus sign +. By default only negative are prefixed with a negative sign.
    • (space) : If no sign is going to be written, a blank space is inserted before the value.
    • # : When used with o, x or X specifiers the value is preceded with 0, 0x or 0X respectively for values different than zero.
      When used with a, A, e, E, f, F, g or G specifiers, it forces the written output to contain a decimal point even if no more digits follow. By default, no decimal point is written if no digits follow.
    • 0 : Only left-pads numbers with zeros instead of spaces when padding is specified.
  • Width: An integer or * that specifies minimum field width. In the case when * is used, the width is not specified in the format string, but as an additional integer value argument preceding the argument that has to be formatted. If the value to be printed is shorter than the width, the result is padded with blank spaces. (Note: This is the minimum width: The value is never truncated.)
  • Precision: Period . followed by an integer or *. In the case when * is used, the precision is not specified in the format string, but as an additional integer value argument preceding the argument that has to be converted. If the value of this argument is negative, it is ignored. If neither a number nor * is used, the precision is taken as zero.
    • For d, i, o, u, x and X specifiers: It signifies the minimum number of digits.
    • For a, A, e, E, f and F specifiers: It signifies the number of decimal digits.
    • For g and G specifiers: It signifies the maximum number of significant digits.
    • For s specifier: It specifies a cutoff point, setting maximum number of characters.
  • Length: Modifies the length of the data type. For example - %i is used for signed decimal integer, with ll length sub-specifier it becomes %lli which can be used for long long int data type. Here is the complete list of length sub-specifier.

Note: If multiple additional format values are provided, they must be in %[flags][width][.precision][length]specifier order.

... (additional arguments) Depending on the format string, a sequence of additional arguments should be passed in the function, each containing a value to replace a format specifiers in the format string. Number of arguments should be at least equal to the number of format specifiers in the format string. Additional arguments will be ignored by this function.

Return Value

Returns the total number of characters written on success (not including the terminating null character). On failure (including when the resulting string to be written to buffer is longer than size), a negative number is returned.

Example: Different specifiers

In the example below, the swprintf() function is used to return the formatted string.

#include <wchar.h>
 
int main (){
  wchar_t buffer [100];
  swprintf(buffer, 100, L"Characters: %c %c \n", 'b', 66);
  wprintf(L"1. %ls", buffer);
  swprintf(buffer, 100, L"Decimals: %d %i \n", 200, 300);
  wprintf(L"2. %ls", buffer);
  swprintf(buffer, 100, L"More Decimals: %ld %li \n", 20000L, 30000L);
  wprintf(L"3. %ls", buffer);
  swprintf(buffer, 100, L"Octals: %o %#o \n", 100, 100);
  wprintf(L"4. %ls", buffer);
  swprintf(buffer, 100, L"Hexadecimals: %x %#x %X %#X \n", 100, 100, 100, 100);
  wprintf(L"5. %ls", buffer);
  swprintf(buffer, 100, L"Strings: %s \n", "Hello");
  wprintf(L"6. %ls", buffer);
  swprintf(buffer, 100, L"Scientific notation: %e %E \n", 123.45, 123.45);
  wprintf(L"7. %ls", buffer);
  swprintf(buffer, 100, L"Floats: %2.0f %2.2f %2.4f \n", 3.1416, 3.1416, 3.1416);
  wprintf(L"8. %ls", buffer);
  swprintf(buffer, 100, L"Positive signed number = %+.2f \n", 3.1416);
  wprintf(L"9. %ls", buffer); 
  swprintf(buffer, 100, L"Padded number = %05d \n", 89);
  wprintf(L"10. %ls", buffer);
  swprintf(buffer, 100, L"Number with Width = %*d \n", 5, 89);
  wprintf(L"11. %ls", buffer);
  return 0;
}

The output of the above code will be:

1. Characters: b B 
2. Decimals: 200 300 
3. More Decimals: 20000 30000 
4. Octals: 144 0144 
5. Hexadecimals: 64 0x64 64 0X64 
6. Strings: Hello 
7. Scientific notation: 1.234500e+02 1.234500E+02 
8. Floats:  3 3.14 3.1416 
9. Positive signed number = +3.14 
10. Padded number = 00089 
11. Number with Width =    89 

Example: Format date string

In the example below, this function is used to return formatted date string .

#include <wchar.h>
 
int main (){
  int year =  2015;
  int month = 5;
  int day = 1;
  wchar_t buffer [100];
  
  //each format specifier specifies padding 
  //with 0 and width of the field
  swprintf(buffer, 100, L"%04d-%02d-%02d", year, month, day);
  wprintf(L"Date is: %ls", buffer);
  return 0;
}

The output of the above code will be:

Date is: 2015-05-01

Example: String specifiers

Consider one more example to see how to use string specifiers with a given character/wide string.

#include <wchar.h>
 
int main (){
  char x[] = "catfish";
  wchar_t y[] = L"many catfishes";
  wchar_t buffer [100];

  swprintf(buffer, 100, L"[%s]\n", x);            //standard string
  wprintf(L"1. %ls", buffer);
  swprintf(buffer, 100, L"[%10s]\n", x);          //right-justified with spaces
  wprintf(L"2. %ls", buffer);
  swprintf(buffer, 100, L"[%*s]\n", 10, x);       //right-justified with spaces
  wprintf(L"3. %ls", buffer);
  swprintf(buffer, 100, L"[%-10s]\n", x);         //left-justified with spaces
  wprintf(L"4. %ls", buffer);
  swprintf(buffer, 100, L"[%-*s]\n", 10, x);      //left-justified with spaces
  wprintf(L"5. %ls", buffer);
  swprintf(buffer, 100, L"[%10.8ls]\n",  y);      //right-justified (8 characters cutoff)
  wprintf(L"6. %ls", buffer);
  swprintf(buffer, 100, L"[%-10.8ls]\n", y);      //left-justified (8 characters cutoff)
  wprintf(L"7. %ls", buffer);
  swprintf(buffer, 100, L"[%-*.*ls]\n", 10, 8, y);//left-justified (8 characters cutoff)
  wprintf(L"8. %ls", buffer);
  return 0;
}

The output of the above code will be:

1. [catfish]
2. [   catfish]
3. [   catfish]
4. [catfish   ]
5. [catfish   ]
6. [  many cat]
7. [many cat  ]
8. [many cat  ]


Length sub-specifier

Specifiers
lengthd iu o x Xf F e E g G a Acspn
(none)intunsigned intdoubleintchar*void*int*
hhsigned charunsigned char signed char*
hshort intunsigned short int short int*
llong intunsigned long intdoublewint_twchar_t* long int*
lllong long intunsigned long long int long long int*
jintmax_tuintmax_t intmax_t*
zsize_tsize_t size_t*
tptrdiff_tptrdiff_t ptrdiff_t*
L long double

See <inttypes.h> for the specifiers for extended types.


❮ C <wchar.h> Library