I want to create a string group-<vari1>-<var2>@thing.com. What I’ve got in expression builder is (‘group-{{R1.group}}-{{R2.role}}@thing.com’) but the output is group-’<var1>’-’<var2’@thing.com what I want is group-<vari1>-<var2>@thing.com. How do I change the expression to get the desired output?
Solved
string creation in Expression Builder
Best answer by phongshader
I found a way to do this but it is very cumbersome:
concat(concat(concat(concat('group-','{{R1.group}}),'-'),'{{R2.role}}'),'@thing.com')
that outputs:
group-<vari1>-<var2>@thing.com
There must be a more elegant way to do this...
Reply
Join the Community
Already have an account? Login.
Sign in to the Community
No account yet? Create an account.
Social Login
Login with LinkedInor use your username
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.