String with Macros

Formatting macros are used to build strings, part of which is replaced when they execute.

To introduce a value that will be replaced when run, simple place the name of the variable/dynamic field between braces.
The variable/field names are not case-sensitive. To include a brace in the string, simply replicate it.

Example

If you have the following variables:

NameValue
ID15
NAMEBread
DESCRIPTIONRye

When they execute, the following strings with macros will yield:

String with macrosResult
"Item: {NAME}""Item: Bread"
"Item: {ID} - {DESCRIPTION}""Item: 15 - Rye"