RhinoScript FORMAT function

Is there a RhinoScript text FORMAT function like in VBA, as in the following Microsoft page:
https://docs.microsoft.com/en-us/office/vba/language/reference/user-interface-help/format-function-visual-basic-for-applications

I tried the MS syntax but rhinoscript did not like it.
image

Hello - Iā€™d say that should probably work - what is the line of code that calls format?

-Pascal

I tried varous iterations, this being the simplest:
strTotals = format(1.23456, ā€œ0.000ā€)

https://www.w3schools.com/asp/asp_ref_vbscript_functions.asp#format

ā€“ Dale