Variable String Formatting

I have a line in the web.config that looks like this:
@@@



@@@
How do I use variables to replace the two strings and table name? I’m not having any problems when it comes to one value pair, but I’m not sure how to handle an entry that has multiple value pairs like this one.

Thanks
Doug

Hi Doug,

The XML configuration variable substitution won’t handle this situation, but the “Substitute in files” feature will; some details of using it at:

This enables syntax like: Table="#{Table}"

Note that as of 2.4, substitution will run before XML config transformation; this is the opposite of 2.3 behaviour.

Regards,
Nick