Parser Format Method (String,  Object )NFX Class Library

[This is preliminary documentation and is subject to change.]

Substitute variables in a fmt string. The following variables are supported:
~v
Take next argument as string. If the argument is ErlAtom, it's name is used. If the argument is ErlVar it's name is used with the type if the fmt string doesn't have the variable type specification (e.g. A::integer()), or the name is used verbatim, if the variable type is present in the format string. Finally if the argument is not ErlAtom and ErlVar, it's inserted as string verbatim
~w
Format next argument as string
~i
Skip next argument
~c
Format next argument as the character

Namespace: NFX.Erlang.Internal
Assembly: NFX.Erlang (in NFX.Erlang.dll) Version: 3.0.0.1 (3.0.0.1)
Syntax

internal static string Format(
	string fmt,
	params Object[] args
)

Parameters

fmt
Type: OnlineSystem String
Format string containing substitution variables (e.g. '~w')
args
Type:  OnlineSystem Object 
List of arguments

Return Value

Type: OnlineString
See Also