Strings (parameters substitution)

Jone

New member
Joined
Mar 14, 2006
Messages
2
Programming Experience
10+
Probably an easy question, but what function will allow me to subsitute parameters in a string. I want to do something like ("The {1} fox jumped over the {2}.","brown","fence") which would make "The brown fox jumped over the fence.". Simple yes, but I cant find the function.
 
String.Format does it.
 
Back
Top