• Formats a string using the specified locale and format string, replacing placeholders with the provided arguments.

    Parameters

    • locale: string

      The locale to use for formatting.

    • format: string

      The format string containing placeholders.

    • ...args: unknown[]

      The arguments to replace the placeholders.

    Returns string

    The formatted string.

    The function behaves like .NET string.Format method

    console.log(formatString('en', 'Hello, {0}!', 'world')); // 'Hello, world!'
    console.log(formatString('en', 'The date is {0:d}', new Date())); // 'The date is 10/31/2021'