My template prompts the user for a description. I want append other "standard" strings to the description to create about 8 other strings. So if the user enters "homeoffice" for @Description, I'd like to create strings for homeoffice-endpoint, homeoffice-network, homeoffice-group and so on. I don't want to count on the user entering every string in the proper manner.
If I use @Description-endpoint, the parser will throw an error because that variable doesn't exist. I also tried setting another variable for @AppendEndpoint and set it to "-endpoint" then referencing @Description@Endpoint, but the parser only parses @Description, @Endpoint is just dropped.
Are there any string commands that can be used to accomplish this?