VBScript Tutorials - Herong's Tutorial Examples - v6.03, by Herong Yang
"-" - Arithmetic Subtraction Operation
This section provides some detail rules and a tutorial example on how arithmetic subtraction operation works in VBScript.
Here are some detail rules about the arithmetic operation - subtraction:
Here is a tutorial example showing you how arithmetic subtraction operation rules work:
<html> <body> <!-- subtraction_operation.html - Copyright (c) 1998 HerongYang.com. All Rights Reserved. --> <pre> <script language="vbscript"> document.writeln("3-7=" & (3-7) & " : " & TypeName(3-7)) document.writeln("3-777777=" & (3-777777) & " : " _ & TypeName(3-777777)) document.writeln("3-9.99=" & (3-9.99) & " : " & TypeName(3-9.99)) document.writeln("3-333.333e200=" & (3-333.333e200) & " : " _ & TypeName(3-333.333e200)) document.writeln("3-""7""=" & (3-"7") & " : " & TypeName(3-"7")) ' document.writeln("3-""7Hello""=" & (3-"7Hello") & " : " _ ' & TypeName(3-"7Hello")) document.writeln("3-True=" & (3-True) & " : " & TypeName(3-True)) document.writeln("3-False=" & (3-False) & " : " _ & TypeName(3-False)) document.writeln("True-False=" & (True-False) & " : " _ & TypeName(True-False)) document.writeln("3-Empty=" & (3-Empty) & " : " _ & TypeName(3-Empty)) </script> </pre> </body> </html>
Here is the output of this VBScript example script:
3-7=-4 : Integer 3-777777=-777774 : Long 3-9.99=-6.99 : Double 3-333.333e200=-3.33333E+202 : Double 3-"7"=-4 : Double 3-True=4 : Integer 3-False=3 : Integer True-False=-1 : Integer 3-Empty=3 : Integer
The output confirms some of arithmetic subtraction operation rules:
By the way, arithmetic unary negation, works in the same way as subtraction, if you insert 0 before the "-" operator.
Table of Contents
Introduction of VBScript - Visual Basic Scripting Edition
Variant Data Type, Subtypes, and Literals
Introduction of Arithmetic Operations
"+" - Arithmetic Addition Operation
►"-" - Arithmetic Subtraction Operation
"*" - Arithmetic Multiplication Operation
"/" - Arithmetic Division Operation
"\" - Arithmetic Integer Division Operation
"Mod" - Arithmetic Modulus Operation
"^" - Arithmetic Exponentiation Operation
Numeric Comparison Operations and Logical Operations
String Operations - Concatenation and Comparison
Variable Declaration and Assignment Statement
Expression and Order of Operation Precedence
Statement Syntax and Statement Types
Array Data Type and Related Statements
Array References and Array Assignment Statements
Conditional Statements - "If ... Then" and "Select Case"
Loop Statements - "For", "While", and "Do"
"Function" and "Sub" Procedures
Inspecting Variables Received in Procedures
Error Handling Flag and the "Err" Object
Regular Expression Pattern Match and Replacement
scrrun.dll - Scripting Runtime DLL Library
IE Web Browser Supporting VBScript