Sun Chili!Soft ASP Sun Chili!Soft
ASP Sun Microsystems

 

VBScript Mod Operator

Used to divide two numbers and return only the remainder.

Syntax: VBScript Mod Operator

result = number1 Mod number2

Arguments: VBScript Mod Operator

result

Any numeric variable.

number1

Any numeric expression.

number2

Any numeric expression.

Remarks: VBScript Mod Operator

The modulus, or remainder, operator divides number1 by number2 (rounding floating-point numbers to integers) and returns only the remainder as result. For example, in the following expression, A (which is result) equals 5.

A = 19 Mod 6.7

If any expression is Null, result is also Null. Any expression that is Empty is treated as 0.

Copyright 2002 Sun Microsystems, Inc. All rights reserved. Legal Notice.