首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > VB >

Vbs-之提供的字符串处置函数

2012-11-01 
Vbs-之提供的字符串处理函数left(String,Length):Returns a specified number of characters from the lef

Vbs-之提供的字符串处理函数
left(String,Length):Returns a specified number of characters from the left side of a string
Right(String,Length):Returns a specified number of characters from the right side of a string
Len(String):To determine the number of characters in string
LCase(string):Returns a string that has been converted to lowercase
UCase(string):Returns a string that has been converted to uppercase.
InStr(string1,string2):Returns the position of the first occurrence of one string within another.
    string1
    Required. String expression being searched.
    string2
    Required. String expression searched for.

InstrRev(string1, string2[, start[, compare]]):Returns the position of an occurrence of one string within another, from the end of string.



热点排行