Parameter substitution: substitute the passed values for %1, %2 etc in the string
the string value contining placeholders such as %1, %2, etc
list of values to be inserted into the string
Debug.Print subst("Hi, %1, please %3 to the %2", "John", "river", "jump")
prints: Hi, John, please jump to the river