Share via


FormatString10 Function (System.Globalization Module)

[This content is no longer valid. For the latest information on "M", "Quadrant", SQL Server Modeling Services, and the Repository, see the Model Citizen blog.]

Returns a formatted string based on the string template and 10 substitution strings.

FormatString10(@format : Text, @item0 : Text, @item1 : Text, @item2 : Text, @item3 : Text, @item4 : Text, @item5 : Text, @item6 : Text, @item7 : Text, @item8 : Text, @item9 : Text)

Arguments

@format

Type: Text. A template for formatting the output string. Indexed format items within braces are replaced by the "item" parameter values. For example, the string "{0}" would be replaced by the value of parameter @item0.

@item0

Type: Text. A string that replaces the "{0}" item in the @format string.

@item1

Type: Text. A string that replaces the "{1}" item in the @format string.

@item2

Type: Text. A string that replaces the "{2}" item in the @format string.

@item3

Type: Text. A string that replaces the "{3}" item in the @format string.

@item4

Type: Text. A string that replaces the "{4}" item in the @format string.

@item5

Type: Text. A string that replaces the "{5}" item in the @format string.

@item6

Type: Text. A string that replaces the "{6}" item in the @format string.

@item7

Type: Text. A string that replaces the "{7}" item in the @format string.

@item8

Type: Text. A string that replaces the "{8}" item in the @format string.

@item9

Type: Text. A string that replaces the "{9}" item in the @format string.

Return Types

Text

Remarks

See Also

Reference

System.Globalization Functions
System.Globalization Module

Send comments about this topic to Microsoft.