String.Format.Js 1.15.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package String.Format.Js --version 1.15.0
NuGet\Install-Package String.Format.Js -Version 1.15.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="String.Format.Js" Version="1.15.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add String.Format.Js --version 1.15.0
#r "nuget: String.Format.Js, 1.15.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install String.Format.Js as a Cake Addin
#addin nuget:?package=String.Format.Js&version=1.15.0

// Install String.Format.Js as a Cake Tool
#tool nuget:?package=String.Format.Js&version=1.15.0

String.format for JavaScript

This is a JavaScript library for string, date and number formatting. Formatting is done using format strings almost completely compatible with the String.Format method in Microsoft .NET Framework.

How to use

To use the library, include the library itself and optionally the cultures you are targetting. Note that if no culture files are included, the invariant culture will be used.

<script src="https://cdn.jsdelivr.net/npm/@dmester/sffjs@1.15.0/dist/stringformat.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@dmester/sffjs@1.15.0/dist/cultures/stringformat.en.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@dmester/sffjs@1.15.0/dist/cultures/stringformat.sv.js"></script>

Then you're ready to go. Here are two simple examples using indexes and object paths/named parameters.

// Index
String.format(
    "Welcome back, {0}! Last seen {1:M}", 
    "John Doe", new Date(1985, 3, 7, 12, 33)
    );
    
// Outputs: 
// Welcome back, John Doe! Last seen April 07

// Named parameters
String.format(
    "Welcome back, {user.name}! Last seen {lastseen:M}", 
    { 
        user: {
            name : "John Doe", 
            age : 42
        },
        lastseen: new Date(2009, 3, 7, 12, 33) 
    });
    
// Outputs: 
// Welcome back, John Doe! Last seen April 07

By default the browser culture will be used, given that the appropriate culture file has been referenced from the page. To set culture explicitly, use the sffjs.setCulture method, which accepts a IETF language code.

sffjs.setCulture("sv");

Browser support

sffjs is tested in IE9 and later, Chrome, Firefox and Edge, but may work in other environments.

See more

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.17.0 2,298 10/18/2020
1.16.1 1,179 7/22/2019
1.16.0 1,810 4/5/2019
1.15.0 128,516 1/27/2019
1.14.0 1,239 9/9/2018
1.13.0 2,905 5/17/2017
1.12.0 1,293 2/22/2017
1.11.0 16,979 7/31/2016
1.10.0 1,532 10/9/2015
1.9.0 6,833 1/26/2014