- 1、本文档共18页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
VB常用字符串操作函数(国外英文资料)
VB常用字符串操作函数(国外英文资料)
VB often USES string manipulation functions
VB often USES string manipulation functions
Original author: virtual roaches tutorial source: this site clicks: 2388 update time: 2009-6-25 u u u
ASC (X), Chr (X) : convert character codes
[form] :
P = Asc (X) returns the character code of the first character of the string X
P = Chr (X) returns the character of X
[example] :
(1) P = CRH (65).
output character A, because the ASCII code for A is equal to 65
(2) P = Asc ( A )
output 65
Len (X) : calculating the length of the string X
[form] :
P = Len (X)
[that] :
The empty string length is 0, and the space character is a character, and a middle text is 2 Bytes, but it is also a character.
[example] :
(1) X = (empty string)
Len of X is 0
(2) X = abcd
Len (X) output is 4
(3) the X = VB tutorial
Len (X) output is 4
The Mid (X) function: read the character in the middle of the string
[form] :
P = Mid (X, n)
Read from the NTH character of X and read all the characters in the back.
P = Mid (X, n, m)
Read from the NTH character of X and read the following m characters.
[example] :
(1) X = abcdefg
P = Mid (X, 5)
The result: P = efg
(2) X = abcdefg
P = Mid (X, 2, 4)
The result is P = bcde
Replace: Replace certain strings in a string with other strings
[form] :
P = Replace (X, S, R)
[explanation] : replace the string S in string X with string R and return.
[example] :
VB is very good.
P = Replace (X, good, nice)
The output is: P = VB is very nice
Strask: reverse the string
[form] :
P = StrReverse (X)
[that] :
Returns the string after the X parameter is reversed
[example] :
(1) X = ABC
P = StrReverse (X)
Output: P = cba
Ucase (X), Lcase (X) : changing the case of the English letter
[form] :
P = Lcase (X)
convert the capital letters in the X string to lowercase
P = Ucase (X)
Convert the lowercase letters in the X string to uppercase
[note] : except for the English letter, no other characters or characters will be affected.
[example] :
(1) X = VB and VC
The results of
文档评论(0)