說明 下面例子利用 formatDateTime 函數(shù)把表達式格式化為長日期型并且把它賦給 MyDateTime: Function GetCurrentDate "formatDateTime 把日期型格式化為長日期型。 GetCurrentDate = formatDateTime(Date, 1) End Function -------------------------------------------------------------------------------- script language=vbs> for i=0 to 4 alert(" formatdatetime(now,"i") 的時候是:"formatdatetime(now,i)) next /script> [Ctrl+A 全部選擇 提示:你可先修改部分代碼,再按運行]
11.函數(shù)Isnumeric() 功能:返回一個布爾值,判斷變量是否為數(shù)字變量,或者是可以轉換成數(shù)字的其它變量. 格式:isnumeric(expression) 參數(shù):expression 是任意的變量. 例子: % i="234" response.write isnumeric(i) %> 結果: true. 12.函數(shù)Isobject() 功能:返回一個布爾值,判斷變量是否為對象的變量, 格式: isobject(expression) 參數(shù): expression 是任意的變量. 例子: % set con =server.creatobject("adodb.connection") response.write isobject(con) %> 結果: true 13.函數(shù):Lbound() 功能:返回一個數(shù)組的下界. 格式:Lbound(arrayname[,dimension]) 參數(shù):arrayname 是數(shù)組變量,dimension 是任意項 例子: % i = array("1","2","3") response.write lbound(i) %> 結果:0 14.函數(shù)Lcase() 功能:將一字符類型變量的字符全部變換小寫字符. 格式:Lcase(string) 參數(shù):string是字符串變量 例子: % str="THIS is Lcase!" response.write Lcase(str) %> 結果:this is lcase! 15.函數(shù)left() 功能:截取一個字符串的前部分; 格式:left(string,length) 參數(shù):string字符串,length截取的長度. 例子: % =left("this is a test!",6) %> 結果:this i 16.函數(shù)len() 功能:返回字符串長度或者變量的字節(jié)長度 格式:len(string *varname) 參數(shù):string字符串;varname任意的變量名稱 例子: % strtest="this is a test!" response.write len(strtest) %> 結果:15 17.函數(shù)ltrim() 功能:去掉字符串前的空格. 格式:ltrim(string) 參數(shù):string 字符串. 例子: % =ltrim (" this is a test!") 結果:this is a test! 18.函數(shù)Mid() 功能:從字符串中截取字符串. 格式:mid(string,start [,length]) 參數(shù):string字符串,start截取的起點,length要截取的長度. 例子: % strtest="this is a test, Today is Monday!" response.write mid(strtest,17,5) %> 結果:Today 19.函數(shù)minute() 功能:返回一數(shù)值, 表示分鐘 格式:minute(time) 參數(shù): time是時間變量 例子lt;% =minute(#12:23:34#) %> 結果:23