Difference between revisions of "Format"

From SDU
Jump to: navigation, search
(New page: formats a string string format(string expression, ... variables) eg. format("Change number is %s", chg_ref_num); format("Change number is %s and description is %s", chg_ref_num, descrip...)
(No difference)

Revision as of 03:35, 27 February 2008

formats a string

string format(string expression, ... variables)

eg. format("Change number is %s", chg_ref_num); format("Change number is %s and description is %s", chg_ref_num, description);

escape cahracters... %% = percent sign %d = int %s = string