Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY CYBERSECURITY DATA SCIENCE
     ❯   

VBScript CInt Function

❮ Complete VBScript Reference

The CInt function converts an expression to type Integer.

Note: The value must be a number between -32768 and 32767.

Syntax

CInt(expression)
Parameter Description
expression Required. Any valid expression

Example

Example

<%

response.write(CInt("300") & "<br />")
response.write(CInt(36.75) & "<br />")
response.write(CInt(-67) & "<br />")

%>

The output of the code above will be:

300
37
-67
Show Example »

❮ Complete VBScript Reference