Trim(string)
Ltrim(string)
Rtrim(string)
Len(string)
Left(string, x)
Right(string, x)
Mid(string, start,x) 取string从start位开始的x个字符组成的字符串
Ucase(string)
Lcase(string)
Space(x)
StrComp(string1,string2[,compare])
StrConv(string,conversion,LCID)
CStr(string)
String(number,character) 返回重复的字符或字符串 String(5, "*") ' 返回 "*****"
Format(expression[,format[, firstdayofweek[,firstweekofyear]]])
InStr([Start,]string1,string2[,compare])
InStrRev(String1,String2[,[Start[,compare])
ASC(string) 返回一个integer,代表字符串中首字母的字符代码
Chr(charcode) 返回string,其中包含有与指定的字符代码相关的字符
Filter(sourcearray,match[,include[,compare]]) 返回一个下标从零开始的数组,该数组包含基于指定筛选条件的一个字符串数组的子集。
Split(expression[,delimiter[,limit[,compare]]]) 返回一个下标从零开始的一维数组,包含指定数目的子字符串
Join(sourcearray[,delimiter])
Replace(expression,find,replace[,start[,count[,compare]]]) 替换字符串 Replace(des, "/", " ")
StrReverse |