This section provides some detail rules and a tutorial example on how arithmetic multiplication operation works in VBScript.
Here are some detail rules about the arithmetic operation - multiplication:
Arithmetic multiplication operation uses the multiplication operator: "*"
Arithmetic multiplication operation requires that at least one of the operands is a numeric subtype:
Byte, Integer, Long, Single or Double.
If an operand is not a numeric subtype, it will be converted into a numeric subtype.
The Boolean subtype is considered as a numeric subtype in a multiplication operation.
"True" represents a numeric value of -1. "False" represents a numeric value of 0.
The Empty subtype is considered as a numeric subtype in a multiplication operation.
"Empty" represents a numeric value of 0.
When a String value is used in a multiplication operation, it will be parsed into a Double value.
If the parsing process fails, the multiplication operation will raise the "Type mismatch" runtime error.
The returning value is the result of the first operand multiplied by the second operand.
The subtype of the returning value is determined by the returning value range and subtypes of operands.
Here is a tutorial example showing you how arithmetic multiplication operation rules work:
The output confirms some of arithmetic multiplication operation rules:
"3*7=21 : Integer" shows that the result is an Integer value, because the result is small value and both operands are Integer values.
"3*777777=2333331 : Long" shows that the result is a Long value, because the result is large value outside the Integer value range.
"3*9.99=29.97 : Double" shows that the result is a Double value, because the second operand is a Double value.
"9.99" is a Double literal. See the data literal section in the previous chapter.
"3*"7"=21 : Double" shows that the result is a Double value, because the second operand is a Double value.
When a string is parsed into a numeric value, it returns a Double value.
The statement on (7*"7Hello") is commented out, because string "7Hello" can not parsed into a Double value.
"True*False=0 : Integer" shows that VBScript recognizes True as -1 and False as 0.