如何对VB中得到的字符串进行操作?

要求把字符串中的每个字母做转换比如把"zApple"转换成"aBqqmf"(只做了+1操作,但是z是到a的)VB中好象不能定义char类型,只能求助大家了... 要求把字符串中的每个字母做转换
比如把"zApple"转换成"aBqqmf"(只做了+1操作,但是z是到a的)
VB中好象不能定义char类型,只能求助大家了
展开
 我来答
Leo239
2007-07-01 · TA获得超过305个赞
知道小有建树答主
回答量:589
采纳率:0%
帮助的人:235万
展开全部
private function StringConversion(byval cString as string) as string
dim i,iStrLen as integer
dim tmpStr,tmpChar as string
iStrLen = len(cString)

tmpStr = ""
for i = 1 to iStrLen
tmpChar = mid$(cString,i,1)
if (asc(tmpChar) >= asc("A") and asc(tmpChar) <asc("Z")) then
tmpChar = chr(asc(tmpChar) + 1)
elseif (asc(tmpChar) = asc("Z")) then
tmpChar = "A"
endif

if (asc(tmpChar) >= asc("a") and asc(tmpChar) <asc("z")) then
tmpChar = chr(asc(tmpChar) + 1)
elseif (asc(tmpChar) = asc("z")) then
tmpChar = "a"
endif

tmpStr = tmpStr + tmpChar
next

StringConversion = tmpStr
end function
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式