Insert output into a String

hey,
I want to insert my Revit element parameter “comments” value i.e. “Hard Rock” in first blank of a default sentence “Excavation of ____ Soil till ___ meter depth”
also want to add depth coming from element depth parameter i.e. “3” in the second blank.
Is it possible?
thanks in advance
image

"excavation of " + input1 + "soil till " + input2 + “meter depth.”

Put this in the code block

Edit: The + symbol enacts the concat method for string inputs.

1 Like

thanks man! <3