Thanks for this, but what what I wanted was something to work like this
<snip>
strName="Fred"
strHomeTown="Smallville"
strOutput = Sprintf("My Name is %s, and I come from %s", strName, strHomeTown)
</snip>
which would result in strOutput having the value
My...