string-interpolate

[syntax] string-interpolate string

Gauche: Expands to a form that evaluates to a string, which is string except the character sequences ",expr" in string are replaced by the value of exprs.

  (string-interpolate "The result is ,(* 2 5).")
   ==> (string-append "The result is " (x->string (* 2 5)) ".")

See also #`.