|
InStr([start,]string1,string2[,compare])
'函数返回一个字符串第一次出现在一个字符串,从左到右搜索。返回搜索到的字符索引位置。
MsgBox ("Line 1 : " & InStr(1, “safdfasdf”, "s"))
InStrRev(string1,string2[,start,[compare]])
'函数返回一个字符串在另一个字符串中的第一次出现。搜索从右到左
msgbox("Line 1 : " & InStrRev("asdfasdf","s",10))
Lcase(String)
'将字符串转换为小写字母后返回字符串
msgbox("Line 1 : " & LCase("DJUEG"))
UCase(String)
'将字符串转换为大写字母后返回字符串
msgbox("Line 1 : " & LCase("ioek"))
Left(String, Length)
'从字符串的左侧返回指定数量的字符
msgbox("Line 1 : " & Left("adfasdf",2))
Right(String, Length)
'从字符串的右侧返回指定数量的字符
msgbox("Line 1 : " & Right("adfasdf",2))
Mid(String,start[,Length])
’返回给定输入字符串中指定数量的字符
msgbox("Line 1 : " & Mid("adfsd",2))
Ltrim(String)
'删除字符串左侧的空格。
msgbox "After Ltrim : " & LTrim(" adfasdfsd")
RTrim(String)
'删除字符串右侧的空格
msgbox "After Ltrim : " & RTrim("adfasdfsd ")
Trim(String)
'删除给定输入字符串的前导空格和尾随空格
msgbox "After Ltrim : " & RTrim(" adfasdfsd ")
Len(String)
'返回给定输入字符串的长度,包括空格
msgbox("Length of var1 is : " & Len("sdf sdfsd "))
space(number)
'用特定数量的空格填充字符串
msgbox("aaa" & Space(2)& "bbb")
StrComp(string1,string2[,compare])
'比较两个给定字符串后,返回一个整数值。
msgbox("Line 1 :" & StrComp("Microsoft","Microsoft"))
Replace ( string1, find, replacement, [start, [count, [compare]]] )
'用另一个字符串替换字符串后返回字符串。
msgbox("Line 1 :" & Replace("alphabet", "a", "e", 1, 1))
String(number,character)
'使用指定的字符填充指定次数的字符串
msgbox("Line 1 :" & String(3,"$"))
StrReverse(string)
'反转指定的字符串
msgbox("Line 1 : " & StrReverse("VBSCRIPT"))
|
|