Module: ink/strings/sprintf

ink/strings/sprintf

The sprintf for js script from Alexandru Marasteanu at diveintojavascript.com

Author:
  • Alexandru Marasteanu <hello at alexei dot ro>
Source:
See:

Methods

<static> sprintf(fmt, argv) → {string}

sprintf() for JavaScript 0.7-beta1 sprintf() for JavaScript is a complete open source JavaScript sprintf implementation.

It's prototype is simple:

 string sprintf(string format , [mixed arg1 [, mixed arg2 [ ,...]]]);

The placeholders in the format string are marked by "%" and are followed by one or more of these elements, in this order:

  • An optional "+" sign that forces to preceed the result with a plus or minus sign on numeric values. By default, only the "-" sign is used on negative numbers.
  • An optional padding specifier that says what character to use for padding (if specified). Possible values are 0 or any other character precedeed by a '. The default is to pad with spaces.
  • An optional "-" sign, that causes sprintf to left-align the result of this placeholder. The default is to right-align the result.
  • An optional number, that says how many characters the result should have. If the value to be returned is shorter than this number, the result will be padded.
  • An optional precision modifier, consisting of a "." (dot) followed by a number, that says how many digits should be displayed for floating point numbers. When used on a string, it causes the result to be truncated.
  • A type specifier that can be any of:

    • % — print a literal "%" character
    • b — print an integer as a binary number
    • c — print an integer as the character with that ASCII value
    • d — print an integer as a signed decimal number
    • e — print a float as scientific notation
    • u — print an integer as an unsigned decimal number
    • f — print a float as is
    • o — print an integer as an octal number
    • s — print a string as is
    • x — print an integer as a hexadecimal number (lower-case)
    • X — print an integer as a hexadecimal number (upper-case)

You can also swap the arguments. That is, the order of the placeholders doesn't have to match the order of the arguments. You can do that by simply indicating in the format string which arguments the placeholders refer to: sprintf('%2$s %3$s a %1$s', 'cracker', 'Polly', 'wants');

And, of course, you can repeat the placeholders without having to increase the number of arguments.

Format strings may contain replacement fields rather than positional placeholders. Instead of referring to a certain argument, you can now refer to a certain key within an object. Replacement fields are surrounded by rounded parentheses () and begin with a keyword that refers to a key: var user = { name : 'Dolly' }; sprintf( 'Hello %(name)s', user ); // Hello Dolly Keywords in replacement fields can be optionally followed by any number of keywords or indexes: var users = [ { name : 'Dolly' }, { name : 'Molly' }, { name : 'Polly' } ];

  sprintf( 'Hello %(users[0].name)s, %(users[1].name)s and %(users[2].name)s', {
        users : users
 } ); // Hello Dolly, Molly and Polly
Parameters:
Name Type Argument Description
fmt string

The format string

argv * <repeatable>

The formatters

Author:
  • Alexandru Marasteanu
Source:
See:
Returns:
Type
string
Example
     var strings = require("ink-strings");
     strings.sprintf( "Hello %1s, it is me, %2s", "Doctor", "Dalek Caan" );
     -> "Hello Doctor, it is me, Dalek Caan"

     strings.sprintf( "%1b", 24 );
     -> "11000"

     strings.sprintf( "%1c", 74 );
     -> "J"

     strings.sprintf( "%1d", 40 );
     -> "40"

     strings.sprintf( "%1d", 40 * -1 );
     -> "-40"

     strings.sprintf( "%1e", 40 * 1000000 );
     -> "4e+7"

     strings.sprintf( "%1u", 40 * -1 );
     -> "40"

     strings.sprintf( "%1f", 40.23498765 );
     -> "40.23498765"

     strings.sprintf( "%1o", 24 );
     -> "30"

     strings.sprintf( "%(name)s %(occupation)s", {
			name       : "doctor",
			occupation : "timelord"
		} );
        -> "doctor timelord"

<static> vsprintf(fmt, argv) → {string}

vsprintf() is the same as sprintf() except that it accepts an array of arguments, rather than a variable number of arguments

Parameters:
Name Type Description
fmt string

The format string

argv array.<string>

The formatters

Author:
  • Alexandru Marasteanu
Source:
Returns:
Type
string
See NOTICE.md for licenses
ink-strings Copyright contributers to ink-strings, base64, Helma, RingoJS, sprintf projects.
Documentation generated by JSDoc 3.2.0-dev on Sun Jun 09 2013 11:56:09 GMT-0400 (EDT) using the DocStrap template.