Es gibt sogar einen Unterschied zwischen + und &. Das haben wir mal vor einiger Zeit hier diskutiert...
Die Ergebnisse können schon unterschiedlich sein!
Use the ampersand (&) operator to ensure a concatenation operation. The plus (+) operator concatenates two character strings, but LotusScript determines whether to interpret the plus as a concatenation operator or an addition operator on the basis of the operands in the expression in which it appears.
For example:
Print 100 & "200"
' Output is 100200, because & is always
' a concatenation operator
while
Print 100 + "200"
' Output is 300, because + was interpreted
' as addition operator
Print "100" + "200"
' Output is 100200, because + was interpreted
' as concatenation operator
Religion ist hier aber nicht gefragt, eher Pragmatismus (oder ist das das gleiche, nur auf hohem Niveau
)
Andreas