ASP 系列函數大全
來源:互聯網
上載者:User
ASP函數大全
ASP函數與VBSCRIPT類似,以下舉一些常用的函數
Array()
函數返回一個數組
運算式 Array(list)
允許資料類型: 字元,數字均可
執行個體: <%
Dim myArray()
For i = 1 to 7
Redim Preserve myArray(i)
myArray(i) = WeekdayName(i)
Next
%>
返回結果: 建立了一個包含7個元素的數組myArray
myArray("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 + 2
response.write "The 返回結果 is: " & cStr(s)
%>
返回結果: 轉化數字“5”為字元“5”。
Date()
函數返回當前系統日期.
運算式 Date()
允許資料類型: None.
執行個體: <%=Date%>
返回結果: 9/9/00
DateAdd()
函數返回一個被改變了的日期。
運算式 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/00
3: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#)%>
返回結果: 4
FormatCurrency()
函數返回運算式,此運算式已被格式化為貨幣值
運算式 FormatCurrency(Expression [, Digit [, LeadingDigit [, Paren [, GroupDigit]]]])
允許資料類型: Digit 指示小數點右側顯示位元的數值。預設值為 -1,指示使用的是電腦的地區設定; LeadingDigit 三態常數,指示是否顯示小數值小數點前面的零。執行個體: <%=FormatCurrency(34.3456)%>
返回結果: $34.35
FormatDateTime()
函數返回運算式,此運算式已被格式化為日期或時間
運算式 FormatDateTime(Date, [, NamedFormat])
允許資料類型: NamedFormat 指示所使用的日期/時間格式的數值,如果省略,則使用 vbGeneralDate.
執行個體: <%=FormatDateTime("09/9/00", vbLongDate)%>
返回結果: Sunday, September 09, 2000
FormatNumber()
函數返回運算式,此運算式已被格式化為數值.
運算式 FormatNumber(Expression [, Digit [, LeadingDigit [, Paren [, GroupDigit]]]])
允許資料類型: Digit 指示小數點右側顯示位元的數值。預設值為 -1,指示使用的是電腦的地區設定。; LeadingDigit i指示小數點右側顯示位元的數值。預設值為 -1,指示使用的是電腦的地區設定。; Paren 指示小數點右側顯示位元的數值。預設值為 -1,指示使用的是電腦的地區設定。; GroupDigit i指示小數點右側顯示位元的數值。預設值為 -1,指示使用的是電腦的地區設定。.
執行個體: <%=FormatNumber(45.324567, 3)%>
返回結果: 45.325
FormatPercent()
函數返回運算式,此運算式已被格式化為尾隨有 % 符號的百分比(乘以 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
%>
返回結果: 9
InstrRev()
函數同上,只是從字串的最後一個搜尋起
運算式 InstrRev([start, ] strToBeSearched, strSearchFor [, compare])
允許資料類型: 同上.
執行個體: <%
strText = "This is a test!!"
pos = InstrRev(strText, "s")
response.write pos
%>
返回結果: 13
Int()
函數返回數實值型別,不四捨五入。
運算式 Int(number)
允許資料類型:
執行個體: <%=INT(32.89)%>
返回結果: 32
IsArray()
函數判斷一對象是否為數組,返回布爾值 .
運算式 IsArray(name)
執行個體: <%
strTest = "Test!"
response.write IsArray(strTest)
%>
返回結果: False
IsDate()
函數判斷一對象是否為日期,返回布爾值
運算式 IsDate(expression)
執行個體: <%
strTest = "9/4/2000"
response.write IsDate(strTest)
%>
返回結果: True
IsEmpty()
函數判斷一對象是否初始化,返回布爾值.
運算式 IsEmpty(expression)
執行個體: <%
Dim i
response.write IsEmpty(i)
%>
返回結果: True
IsNull()
函數判斷一對象是否為空白,返回布爾值.
運算式 IsNull(expression)
執行個體: <%
Dim i
response.write IsNull(i)
%>
返回結果: False
IsNumeric()
函數判斷一對象是否為數字,返回布爾值.
運算式 IsNumeric(expression)
執行個體: <%
i = "345"
response.write IsNumeric(i)
%>
返回結果: True
就算數字加了引號,ASP還是認為它是數字。
IsObject()
函數判斷一對象是否為對象,返回布爾值.
運算式 IsObject(expression)
執行個體: <%
Set con = Server.CreateObject("ADODB.Connection")
response.write IsObject(con)
%>
返回結果: True
LBound()
函數返回指定數組維的最小可用下標.
運算式 Lbound(arrayname [, dimension])
執行個體: <%
i = Array("Monday","Tuesday","Wednesday")
response.write LBound(i)
%>
返回結果: 0
LCase()
函數 返回字串的小寫形式
運算式 Lcase(string)
執行個體: <%
strTest = "This is a test!"
response.write LCase(strTest)
%>
返回結果: this is a test!
Left()
函數返回字串左邊第length個字元以前的字元(含第length個字元).
運算式 Left(string, length)
執行個體: <%
strTest = "This is a test!"
response.write Left(strTest, 3)
%>
返回結果: Thi
Len()
函數返回字串的長度.
運算式 Len(string | varName)
執行個體: <%
strTest = "This is a test!"
response.write Len(strTest)
%>
返回結果: 15
LTrim()
函數去掉字串左邊的空格.
運算式 LTrim(string)
執行個體: <%
strTest = " This is a test!"
response.write LTrim(strTest)
%>
返回結果: This is a test!
Mid()
函數返回特定長度的字串(從start開始,長度為length).
運算式 Mid(string, start [, length])
執行個體: <%
strTest = "This is a test! Today is Monday."
response.write Mid(strTest, 17, 5)
%>
返回結果: Today
Minute()
函數返回時間的分鐘.
運算式 Minute(time)
執行個體: <%=Minute(#12:45:32 PM#)%>
返回結果: 45
Month()
函數返回日期.
運算式 Month(date)
執行個體: <%=Month(#08/04/99#)%>
返回結果: 8
MonthName()
函數返回指定月份
運算式 MonthName(month, [, Abb])
執行個體: <%=MonthName(Month(#08/04/99#))%>
返回結果: August
Now()
函數返回系統時間
運算式 Now()
執行個體: <%=Now%>
返回結果: 9/9/00 9:30:16 AM
Right()
函數返回字串右邊第length個字元以前的字元(含第length個字元).
運算式 Right(string, length)
執行個體: <%
strTest = "This is an test!"
response.write Right(strTest, 3)
%>
返回結果: st!
Rnd()
函數產生一個隨機數.
運算式 Rnd [ (number) ]
執行個體: <%
Randomize()
Rnd()
函數產生一個隨機數.
運算式 Rnd [ (number) ]
執行個體: <%
Randomize()
response.write RND()
%>
返回結果: 任何一個在0 到 1 之間的數
Round()
函數返回按指定位元進行四捨五入的數值.
運算式 Round(expression [, numRight])
執行個體: <%
i = 32.45678
response.write Round(i)
%>
返回結果: 32
Rtrim()
函數去掉字串右邊的字串.
運算式 Rtrim(string)
執行個體: <%
strTest = "This is a test!! "
response.write RTrim(strTest)
%>
返回結果: This is a test!!
Split()
函數將一個字串分割並返回分割結果
運算式 Split (S[,d])
執行個體:<%V= Split(A,B,C)
For i = 0 To UBound(V)
Response.Write V(i)
Next
%>
返回結果: A B C
Second()
函數返回秒.
運算式 Second(time)
執行個體: <%=Second(#12:34:28 PM#)%>
返回結果: 28
StrReverse()
函數反排一字串
運算式 StrReverse(string)
執行個體: <%
strTest = "This is a test!!"
response.write StrReverse(strTest)
%>
返回結果: !!tset a si sihT
Time()
函數返回系統時間.
運算式 Time()
執行個體: <%=Time%>
返回結果: 9:58:28 AM
Trim()
函數去掉字串左右的空格.
運算式 Trim(string)
執行個體: <%
strTest = " This is a test!! "
response.write Trim(strTest)
%>
返回結果: This is a test!!
UBound()
函數返回指定數組維數的最大可用下標>.
運算式 Ubound(arrayname [, dimension])
執行個體: <%
i = Array("Monday","Tuesday","Wednesday")
response.write UBound(i)
%>
返回結果: 2
UCase()
函數返回字串的大寫形式.
運算式 UCase(string)
允許資料類型:
執行個體: <%
strTest = "This is a test!!"
response.write UCase(strTest)
%>
返回結果: THIS IS A TEST!!
VarType()
函數返回指示變數子類型的值
運算式 VarType(varName)
執行個體: <%
i = 3
response.write varType(i)
%>
返回結果: 2(數字)詳見"asp常數"
WeekDay()
函數返回在一周的第幾天.
運算式 WeekDay(date [, firstdayofweek])
執行個體: <%
d = #9/9/00#
response.write Weekday(d)
%>
返回結果: 4(星期三)
WeekDayName()
函數返回一周第幾天的名字.
運算式 WeekDayName(weekday [, Abb [, firstdayofweek]])
執行個體: <%
d = #9/9/00#
response.write WeekdayName(Weekday(d))
%>
返回結果: Wednesday
Year()
函數返回當前的年份.
運算式 Year(date)
執行個體: <%=Year(#9/9/00#)%>
返回結果: 1999