I want to dynamically create a String in an Expression for an Input Variable.
I tried different things that did not work:
${"prefix/" + myDynamicPart + ".postfix"}
prefix/${myDynamicPart}.postfix
The Result on runtime should look then for the variable myDynamicPart = hello
:
“prefix/hello.postfix”
How is this done?