Format: Difference between revisions
From Catglobe Wiki
More actions
Nguyenduyan (talk | contribs) Created page with "Category:String_Functions {{HelpFiles}} ====format==== Format the first parameter with the other parameters given and append to current string '''Syntax''' format("..." |
(No difference)
|
Latest revision as of 09:33, 1 June 2017
format
Format the first parameter with the other parameters given and append to current string
Syntax
format("{0}", param);
Arguments
param: any type
Return type
string
Examples
string firstName = "A";
string middleName = "Van";
string lastName = "Nguyen";
string fullName = format("My name is {0} {1} {2}", firstName, middleName, lastName);//My name is A Van Nguyen
Availability
From June 2017