国产一级a片免费看高清,亚洲熟女中文字幕在线视频,黄三级高清在线播放,免费黄色视频在线看

打開APP
userphoto
未登錄

開通VIP,暢享免費(fèi)電子書等14項(xiàng)超值服

開通VIP
VBScript函數(shù)大字典(詳細(xì)說明2)
VBScript函數(shù)大字典(詳細(xì)說明2)
2006-09-12 15:00
11.函數(shù)Formatdatetime()
功能:格式化日期表達(dá)式/變量
格式:formatdatetime(date[,nameformat])
參數(shù):date為有效的日期表達(dá)式/充變量;
nameformat是指定的日期格式常量名稱.
例子:<% =formatdatetime("08/04/99",vblongdate) %>
結(jié)果:Wednesday,August 04,1999
 
12.函數(shù)Isnumeric()
功能:返回一個(gè)布爾值,判斷變量是否為數(shù)字變量,
或者是可以轉(zhuǎn)換成數(shù)字的期貨它的變量.
格式:isnumeric(expression) 參數(shù):expression 是任意的變量.
例子: <% i="234" response.write isnumeric(i) %>
結(jié)果: true.
 
13.函數(shù)Isobject()
功能:返回一個(gè)布兒值,判斷變量是否為對(duì)象的變量,
格式:isobject(expression)
參數(shù):expression 是任意的變量.
例子:<% set con =server.creatobject("adodb.connection")
response.write isobject(con) %>
結(jié)果:true
 
14.函數(shù):Lbound()
功能:返回一個(gè)數(shù)組的下界.
格式:Lbound(arrayname[,dimension])
參數(shù):arrayname 是數(shù)組變量,dimension 是任意項(xiàng)
例子: <% i = array("1","2","3") response.write lbound(i) %>
結(jié)果:0
 
15.函數(shù)Lcase()
功能:將一字符類型變量的字符全部變換不寫字符.
格式:Lcase(string)
參數(shù):string是字串變量
例子: <% str="THIS is Lcase!" response.write Lcase(str) %>
結(jié)果:this is lcase!
 
16.函數(shù)left()
功能:截取一個(gè)字符串的前部分;
格式:left(string,length)
參數(shù):string字符串,length截取的長(zhǎng)度.
例子: <% =left("this is a test!",6) %>
結(jié)果:this i
 
17.函數(shù)len()
功能:返回字符串長(zhǎng)度或者變量的字節(jié)長(zhǎng)度
格式:len(string |varname)
參數(shù):string字符串;
varname任意的變量名稱
例子: <% strtest="this is a test!" response.write left(strtest) %>
結(jié)果:15
 
18.函數(shù)ltrim()
功能:去掉字符串前的空格.
格式:ltrim(string)
參數(shù):string 字串.
例子: <% =ltrim (" this is a test!")
結(jié)果:this is a test!
 
19.函數(shù)Mid()
功能:從字串中截取字串.
格式:mid(string,start [,length])
參數(shù):string字串,start截取的起點(diǎn),length要截取的長(zhǎng)度.
例子: <% strtest="this is a test, Today is Monday!" response.write mid(strtest,17,5) %>
結(jié)果:Today
 
20.函數(shù)minute()
功能:返回一個(gè)值, 表示分鐘
格式:minute(time)
參數(shù): time是時(shí)間變量
例子lt;% =minute(#12:23:34#) %>
結(jié)果:23
 
21.函數(shù)month()
功能:返回一數(shù)值, 表示月份
格式:month(time)
參數(shù):time是日期變量
例子lt;% =month(#08/09/99) %>
結(jié)果:9
 
22.函數(shù)monthname()
功能:返回月份的字符串(名稱).
格式:Monthname(date [,abb])
參數(shù):date是日期變量,abb=true時(shí) 則月份的縮寫,
例子: <% =monthname(#4/5/99#) %>
結(jié)果:April
 
23.函數(shù)Now()
功能:返回系統(tǒng)的當(dāng)前時(shí)間和日期.
格式:now()
參數(shù):無
例子: <% =now() %>
結(jié)果: 05/10/00 8:45:32 pm
 
24.函數(shù):replace()
功能:在字串中查找,替代指定的字串.
格式:replace(strtobesearched,strsearchfor,strreplacewith [,start[,count[,compare]]])
參數(shù):strtobesearched是字串;
strsearchfor是被查找的子字串;
strreplacewith 是用來替代的子字串.start,count,compare 是任意選取項(xiàng).
例子: <% strtest="this is an apple." response.write replace(strtest,"apple","orange") %>
結(jié)果:this is an orange.
 
25.函數(shù)right()
功能:截取一個(gè)字符串的后部分
格式:right(string,length)
參數(shù):string字符串,length截取的長(zhǎng)度.
例子: <% strtest="this is a test!" response.write right(strtest,3) %>
結(jié)果:st!
 
26.函數(shù)rnd()
功能:返回一個(gè)隨機(jī)數(shù)值
格式:rnd[(number)]
參數(shù):number是任意數(shù)值.
例子: <% randomize() response.write rnd() %>
結(jié)果:0/1數(shù)值之一,
無randomize(), 則不能產(chǎn)生隨機(jī)數(shù).
 
27.函數(shù)round()
功能:完整數(shù)值
格式:round(expression[,numright])
參數(shù):expression數(shù)字表達(dá)式;numright任意選項(xiàng)
例子: <% i=12.33654 response.write round(i) %>
結(jié)果: 12
 
28.函數(shù)rtrim()
功能:去掉字符串后的空格.
格式:rtrim(string)
參數(shù):string 是字串
例子: <% response.write rtrim("this is a test! ") %>
參數(shù):this is a test!
 
29.函數(shù)second()
功能:返回一個(gè)整數(shù)值
格式:second(time)
參數(shù):time是一個(gè)有效的時(shí)間表達(dá)式;
例子:<% =second(# 12:28:30#) %>
結(jié)果:30
 
30.函數(shù)strReverse()
功能:返回與原字串排列逆向的字串.
格式:strreverse(string)
參數(shù):string是字串
例子lt;% =strreverse("this is a test!")
結(jié)果:!tset a si siht
 
31.函數(shù)time()
功能:返回當(dāng)前系統(tǒng)的時(shí)間值.
格式:time()
參數(shù):無
結(jié)果:9:58:28 Am 關(guān)鍵詞:ASP
 
32.函數(shù)trim()
功能:刪去字符串前,后的空格.
格式:trim(string)
參數(shù):string 字串.
例子:<% strtest=" this is a test! " response.write trim(strtest) %>
結(jié)果:this is a test!
 
33.函數(shù)UBound()
功能:返回一個(gè)數(shù)組的上界.
格式:Ubound(expression [,dimension])
參數(shù):expression 是數(shù)組表達(dá)式/數(shù)組變量,dimension 是任意項(xiàng)
例子: <% i = array("1","2","3") response.write ubound(i) %>
結(jié)果: 2
 
34.函數(shù):UCase()
功能:將一字符號(hào)型變量的字符全部變換成大寫字符.
格式:Ucase(string)
參數(shù):string是字串變量
例子: <% str="THIS is Lcase!" response.write Lcase(str) %>
結(jié)果:THIS IS LCASE!
 
35.函數(shù)Vartype()
功能:返回變量的常量代碼(整數(shù))
格式:Vartype(varname)
參數(shù):varname是任何類型的變量名稱
例子: <% i=5 response.write vartype(i) %>
結(jié)果:2 (2表示整數(shù),須要參考ASP常量代碼.)
 
 36.函數(shù)Weekday()
功能:返回一個(gè)整數(shù),對(duì)應(yīng)一周中的第幾天.
格式:Weekday(date [,firstofweek])
參數(shù):date為日期變量,firstofweek為任選項(xiàng).
例子: <% d= # 5/9/00 # response.write weekday(d) %>
結(jié)果:3(3 表示是星期二)
 
37.函數(shù)weekdayname()
功能:返回字串,對(duì)應(yīng)星期幾.
格式:weekdayname(weekday[,abb[,firstdayofweek]])
參數(shù):weekday為日期變量,abb,firstdayofweek為任選項(xiàng).
例子: <% d = #8/4/99# response.write weekdayname(d) %>
結(jié)果: Wednesday
 
38.函數(shù)year()
功能:返回日期表達(dá)式所在的年份.
格式:year(date)
參數(shù):date是有效的日期表達(dá)式
例子: <% =year(#8/9/99#) %>
結(jié)果:1999

本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊舉報(bào)
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
asp
sql常用命令
asp函數(shù)
string和cstring,cstring賦值給char數(shù)組
C 基礎(chǔ)知識(shí)
JavaScript常用字符串函數(shù)
更多類似文章 >>
生活服務(wù)
分享 收藏 導(dǎo)長(zhǎng)圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服