format string gdscript

var s1 : String = "godot"
var s2 : String = "%s game engine" %[s1]
print(s2) # print -> godot game engine
Azad Kshitij