What is the difference between VBScript's + and & operator?

后端 未结 4 1569
梦如初夏
梦如初夏 2020-12-03 16:57

On every site that talks about VBScript, the \'&\' operator is listed as the string concatenation operator. However, in some code that I have recently inher

4条回答
  •  孤城傲影
    2020-12-03 17:19

    The & operator does string concatenation, that is, forces operands to be converted to strings (like calling CStr on them first). +, in its turn, forces addition if one of the expressions is numeric. For example:

    1 & 2
    

    gives you 12, whereas

    1 + 2
    "1" + 2
    1 + "2"
    

    give you 3.

    So, it is recommended to use & for string concatenation since it eliminates ambiguity.

提交回复
热议问题