Quick References
ADO
ASP
CSS2
HTML
JavaScript
Jet SQL
VBScript
WML
WMLScript
WSH
XHTML
XML DOM
XSLT
Features
Knowledge Base
Tutorials
Partners
ZVON.ORG
XML
Planet Source Code
VisualBuilder
Web Design
Your HTML Source
XML/XSLT Forums
ASPAlliance
Scripts
Programmers Heaven
Tek-Tips Forums
Developer Fusion
Code Project
All Operators
/ Operator
OPERATOR: \
Implemented in version 1.0
\
The
\
operator divides two numbers and returns an integer (fixed-point). Each number can be either floating-point or fixed-point.
This operator works by rounding the values of the supplied operands to integers (if necessary) before performing the calculation and only returns an integer with no decimal representation (truncated).
This first example requires no rounding of the operands and returns '6' ('6.25' truncated).
Code:
<% result = 25 \ 4 %>
Output:
6
This next example demonstrates the 'pre-rounding' of the operands; the actual values used for the calculation eqate to '35\6' which returns '5' ('5.833
r
' truncated).
Code:
<% result = 35.4 \ 6.01 %>
Output:
5
Compare the previous example to the next which returns '6' because the first operand has been rounded internally to '36' before calculation.
Code:
<% result = 35.9 \ 6.01 %>
Output:
6
Copyright 1999-2005 by Infinite Software Solutions, Inc. All rights reserved.
Trademark Information