ASP函数大全

ASP函数大全,第1张

概述Array()CInt()CStr()Date()DateAdd()Day()FormatCurrency()FormatDateTime()FormatNumber()FormatPercent()Instr()InstrRev()Int()IsArray()IsDate()IsNull()IsNumeric()IsObject()LBound()LCase()Len()LTrim()Mid()Minute()Month()Now()Right()Rnd()Round()Rtrim()Second()StrReverse()Time()Trim()UBound()VarType()WeekDay()WeekDayName()Year()MonthName()DateDiff()Hour()IsEmpty()Left()Split()UCase() ASP函数与VBSCRIPT类似,以下举一些常用的函数Array()函数返回一个数组表达式 Array(list)允许数据类型: 字符,数字均可实例:<%Dim myArray()For i = 1 to 7Redim Preserve myArray(i)myArray(i) = WeekdayName(i)Next%>返回结果: 建立了一个包含7个元素的数组myArraymyArray("Sunday","Monday", ... ... "Saturday")CInt()函数将一个表达式转化为数字类型表达式 CInt(expression)允许数据类型: 任何有效的字符均可实例:<%f = "234"response.write cINT(f) + 2%>返回结果: 236转化字符"234"为数字"234",如果字符串为空,则返回0值CreateObject()函数建立和返回一个已注册的ACTIVEX组件的实例。表达式 CreateObject(objName)允许数据类型: objName 是任何一个有效、已注册的ACTIVEX组件的名字.实例: <%Set con = Server.CreateObject("ADODB.Connection")%>CStr()函数转化一个表达式为字符串.表达式 CStr(expression)允许数据类型: expression 是任何有效的表达式。实例: <%s = 3 + 2response.write "The 返回结果 is: " & cStr(s)%>返回结果: 转化数字“5”为字符“5”。Date()函数返回当前系统日期.表达式 Date()允许数据类型: None.实例: <%=Date%>返回结果: 9/9/00DateAdd()函数返回一个被改变了的日期。表达式 DateAdd(timeinterval,number,date)允许数据类型:timeinterval is the time interval to add;number is amount of time intervals to add;and date is the starting date.实例: <%currentDate = #9/9/00#newDate = DateAdd("m",3,currentDate)response.write newDate%><%currentDate = #12:34:45 PM#newDate = DateAdd("h",3,currentDate)response.write newDate%>返回结果: 9/9/003:34:45 PM"m" = "month";"d" = "day";If currentDate is in time format then,"h" = "hour";"s" = "second";DateDiff()函数返回两个日期之间的差值 。表达式 DateDiff(timeinterval,date1,date2 [, firstdayofweek [, firstweekofyear]])允许数据类型: timeinterval 表示相隔时间的类型,如“M“表示“月”。实例: <%fromDate = #9/9/00#toDate = #1/1/2000#response.write "There are " & _DateDiff("d",fromDate,toDate) & _" days to millenium from 9/9/00."%>返回结果: 从9/9/00 到2000年还有 150 天.Day()函数返回一个月的第几日 .表达式 Day(date)允许数据类型: date 是任何有效的日期。实例: <%=Day(#9/9/00#)%>返回结果: 4FormatCurrency()函数返回表达式,此表达式已被格式化为货币值表达式 FormatCurrency(Expression [, Digit [, LeadingDigit [, Paren [, GroupDigit]]]])允许数据类型: Digit 指示小数点右侧显示位数的数值。默认值为 -1,指示使用的是计算机的区域设置; LeadingDigit 三态常数,指示是否显示小数值小数点前面的零。实例: <%=FormatCurrency(34.3456)%>返回结果: $34.35FormatDateTime()函数返回表达式,此表达式已被格式化为日期或时间表达式 FormatDateTime(Date, [, NamedFormat])允许数据类型: NamedFormat 指示所使用的日期/时间格式的数值,如果省略,则使用 vbGeneralDate.实例: <%=FormatDateTime("09/9/00", vbLongDate)%>返回结果: Sunday, September 09, 2000FormatNumber()函数返回表达式,此表达式已被格式化为数值.表达式 FormatNumber(Expression [, Digit [, LeadingDigit [, Paren [, GroupDigit]]]])允许数据类型: Digit 指示小数点右侧显示位数的数值。默认值为 -1,指示使用的是计算机的区域设置。; LeadingDigit i指示小数点右侧显示位数的数值。默认值为 -1,指示使用的是计算机的区域设置。; Paren 指示小数点右侧显示位数的数值。默认值为 -1,指示使用的是计算机的区域设置。; GroupDigit i指示小数点右侧显示位数的数值。默认值为 -1,指示使用的是计算机的区域设置。.实例: <%=FormatNumber(45.324567, 3)%>返回结果: 45.325FormatPercent()函数返回表达式,此表达式已被格式化为尾随有 % 符号的百分比(乘以 100 )。 (%)表达式 FormatPercent(Expression [, Digit [, LeadingDigit [, Paren [, GroupDigit]]]])允许数据类型: 同上.实例: <%=FormatPercent(0.45267, 3)%>返回结果: 45.267%Hour()函数以24时返回小时数.表达式 Hour(time)允许数据类型:实例: <%=Hour(#4:45:34 PM#)%>返回结果: 16(Hour has been converted to 24-hour system)Instr()函数返回字符或字符串在另一个字符串中第一次出现的位置.表达式 Instr([start, ] strToBeSearched, strSearchFor [, compare])允许数据类型: Start为搜索的起始值,strToBeSearched接受搜索的字符串 strSearchFor要搜索的字符.compare比较方式(详细见ASP常数)实例: <%strText = "This is a test!!"pos = Instr(strText, "a")response.write pos%>返回结果: 9InstrRev()函数同上,只是从字符串的最后一个搜索起表达式 InstrRev([start, ] strToBeSearched, strSearchFor [, compare])允许数据类型: 同上.实例: <%strText = "This is a test!!"pos = InstrRev(strText, "s")response.write pos%>返回结果: 13Int()函数返回数值类型,不四舍五入。表达式 Int(number)允许数据类型:实例: <%=INT(32.89)%>返回结果: 32IsArray()函数判断一对象是否为数组,返回布尔值 .表达式 IsArray(name)实例: <%strTest = "Test!"response.write IsArray(strTest)%>返回结果: FalseIsDate()函数判断一对象是否为日期,返回布尔值表达式 IsDate(expression)实例: <%strTest = "9/4/2000"response.write IsDate(strTest)%>返回结果: TrueIsEmpty()函数判断一对象是否初始化,返回布尔值.表达式 IsEmpty(expression)实例: <%Dim iresponse.write IsEmpty(i)%>返回结果: TrueIsNull()函数判断一对象是否为空,返回布尔值.表达式 IsNull(expression)实例: <%Dim iresponse.write IsNull(i)%>返回结果: FalseIsNumeric()函数判断一对象是否为数字,返回布尔值.表达式 IsNumeric(expression)实例: <%i = "345"response.write IsNumeric(i)%>返回结果: True就算数字加了引号,ASP还是认为它是数字。IsObject()函数判断一对象是否为对象,返回布尔值.表达式 IsObject(expression)实例: <%Set con = Server.CreateObject("ADODB.Connection")response.write IsObject(con)%>返回结果: TrueLBound()函数返回指定数组维的最小可用下标.表达式 Lbound(arrayname [, dimension])实例: <%i = Array("Monday","Tuesday","Wednesday")response.write LBound(i)%>返回结果: 0LCase()函数 返回字符串的小写形式表达式 Lcase(string)实例: <%strTest = "This is a test!"response.write LCase(strTest)%>返回结果: this is a test!Left()函数返回字符串左边第length个字符以前的字符(含第length个字符)

<table bordercolor="#ccccff" cellspacing="4" wIDth="550" align="center" border="0">
<tr>
<td wIDth="15%" bgcolor="#ccffff">
<div align="center"><Font size="2"><a href="#Array"><font color="#800080">Array()

</td>
<td wIDth="16%" bgcolor="#ffccff">
<div align="center"><Font size="2"><a href="#CInt"><font color="#800080">CInt()

</td>
<td wIDth="17%" bgcolor="#ccffff">
<div align="center"><Font color="#800080" size="2"><a href="#CStr">CStr()
</td>
<td wIDth="17%" bgcolor="#ffccff">
<div align="center"><Font color="#800080" size="2"><a href="#Date()">Date()
</td>
<td wIDth="18%" bgcolor="#ccffff">
<div align="center"><Font color="#800080" size="2"><a href="#DateAdd()">DateAdd()
</td>
</tr>
<tr>
<td bgcolor="#ccffff">
<div align="center"><Font color="#800080" size="2"><a href="#Day()">Day()
</td>
<td bgcolor="#ffccff">
<div align="center"><Font color="#800080" size="2"><a href="#FormatCurrency()">FormatCurrency()
</td>
<td bgcolor="#ccffff">
<div align="center"><Font color="#800080" size="2"><a href="#FormatDateTime()">FormatDateTime()
</td>
<td bgcolor="#ffccff">
<div align="center"><Font color="#800080" size="2"><a href="#FormatNumber()">FormatNumber()
</td>
<td bgcolor="#ccffff">
<div align="center"><Font color="#800080" size="2"><a href="#FormatPercent()">FormatPercent()
</td>
</tr>
<tr>
<td bgcolor="#ccffff">
<div align="center"><Font color="#800080" size="2"><a href="#Instr()">Instr()
</td>
<td bgcolor="#ffccff">
<div align="center"><Font color="#800080" size="2"><a href="#InstrRev()">InstrRev()
</td>
<td bgcolor="#ccffff">
<div align="center"><Font color="#800080" size="2"><a href="#Int()">Int()
</td>
<td bgcolor="#ffccff">
<div align="center"><Font color="#800080" size="2"><a href="#IsArray()">IsArray()
</td>
<td bgcolor="#ccffff">
<div align="center"><Font color="#800080" size="2"><a href="#IsDate()">IsDate()
</td>
</tr>
<tr>
<td bgcolor="#ccffff">
<div align="center"><Font color="#800080" size="2"><a href="#IsNull()">IsNull()
</td>
<td bgcolor="#ffccff">
<div align="center"><Font color="#800080" size="2"><a href="#IsNumeric()">IsNumeric()
</td>
<td bgcolor="#ccffff">
<div align="center"><Font color="#800080" size="2"><a href="#IsObject()">IsObject()
</td>
<td bgcolor="#ffccff">
<div align="center"><Font color="#800080" size="2"><a href="#LBound()">LBound()
</td>
<td bgcolor="#ccffff">
<div align="center"><Font color="#800080" size="2"><a href="#LCase()">LCase()
</td>
</tr>
<tr>
<td bgcolor="#ccffff">
<div align="center"><Font color="#800080" size="2"><a href="#Len()">Len()
</td>
<td bgcolor="#ffccff">
<div align="center"><Font color="#800080" size="2"><a href="#LTrim()">LTrim()
</td>
<td bgcolor="#ccffff">
<div align="center"><Font color="#800080" size="2"><a href="#Mid()">Mid()
</td>
<td bgcolor="#ffccff">
<div align="center"><Font color="#800080" size="2"><a href="#Minute()">Minute()
</td>
<td bgcolor="#ccffff">
<div align="center"><Font color="#800080" size="2"><a href="#Month()">Month()
</td>
</tr>
<tr>
<td bgcolor="#ccffff">
<div align="center"><Font color="#800080" size="2"><a href="#Now()">Now()
</td>
<td bgcolor="#ffccff">
<div align="center"><Font color="#800080" size="2"><a href="#Right()">Right()
</td>
<td bgcolor="#ccffff">
<div align="center"><Font color="#800080" size="2"><a href="#Rnd()">Rnd()
</td>
<td bgcolor="#ffccff">
<div align="center"><Font color="#800080" size="2"><a href="#Round()">Round()
</td>
<td bgcolor="#ccffff">
<div align="center"><Font color="#800080" size="2"><a href="#Rtrim()">Rtrim()
</td>
</tr>
<tr>
<td bgcolor="#ccffff">
<div align="center"><Font color="#800080" size="2">@L_502_30@
</td>
<td bgcolor="#ffccff">
<div align="center"><Font color="#800080" size="2"><a href="#StrReverse()">StrReverse()
</td>
<td bgcolor="#ccffff">
<div align="center"><Font color="#800080" size="2"><a href="#Time()">Time()
</td>
<td bgcolor="#ffccff">
<div align="center"><Font color="#800080" size="2"><a href="#Trim()">Trim()
</td>
<td bgcolor="#ccffff">
<div align="center"><Font color="#800080" size="2"><a href="#UBound()">UBound()
</td>
</tr>
<tr>
<td bgcolor="#ccffff">
<div align="center"><Font color="#800080" size="2"><a href="#VarType()">VarType()
</td>
<td bgcolor="#ffccff">
<div align="center"><Font color="#800080" size="2"><a href="#WeekDay()">WeekDay()
</td>
<td bgcolor="#ccffff">
<div align="center"><Font color="#800080" size="2"><a href="#WeekDayName()">WeekDayName()
</td>
<td bgcolor="#ffccff">
<div align="center"><Font color="#800080" size="2"><a href="#Year()">Year()
</td>
<td bgcolor="#ccffff">
<div align="center"><Font color="#800080" size="2"><a href="#MonthName()">MonthName()
</td>
</tr>
<tr>
<td bgcolor="#ccffff">
<div align="center"><Font color="#800080" size="2"><a href="#DateDiff()">DateDiff()
</td>
<td bgcolor="#ffccff">
<div align="center"><Font color="#800080" size="2"><a href="#Hour()">Hour()
</td>
<td bgcolor="#ccffff">
<div align="center"><Font color="#800080" size="2"><a href="#IsEmpty()">IsEmpty()
</td>
<td bgcolor="#ffccff">
<div align="center"><Font color="#800080" size="2"><a href="#Left()">Left()
</td>
<td bgcolor="#ccffff">
<div align="center"><Font color="#800080" size="2"><a href="#Split()">Split()
</td>
</tr>
<tr>
<td bgcolor="#ccffff">
<div align="center">

 
Array()

表达式 Array(list)
允许数据类型: 字符,数字均可

Dim myArray()
For i = 1 to 7
Redim Preserve myArray(i)
myArray(i) = WeekdayName(i)
Next
%>

表达式 CInt(Expression)
允许数据类型: 任何有效的字符均可
实例:
<%
f = "234"
response.write cINT(f) + 2
%>
返回结果: 236
转化字符"234"为数字"234",如果字符串为空,则返回0值
CreateObject()
函数建立和返回一个已注册的ACTIVEX组件的实例。
表达式 CreateObject(objname)
允许数据类型: objname 是任何一个有效、已注册的ACTIVEX组件的名字.


timeinterval is the time interval to add;
number is amount of time intervals to add;
and date is the starting date.


.

以上是内存溢出为你收集整理的ASP函数大全全部内容,希望文章能够帮你解决ASP函数大全所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1220182.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-05
下一篇 2022-06-05

发表评论

登录后才能评论

评论列表(0条)