Suffix a value with another value, if the first value is not empty
Whereas PrefixWith is useful for structures like addresses where usually at least the first line will have a value, SuffixWith is handy for the case of parts of a name, where sometimes the first one or two parts are unknown or not specified. The following example shows how this function would be used:
«
SuffixWith(Title,' ')
»«SuffixWith(FirstNames,' ')
»«LastName
»
In the case where, say, the Title or FirstNames are empty, the trailing space will not be rendered into the assembled document.