當前位置:成語大全網 - 新華字典 - vb中輸入壹串字符串,字符串中每個字符字典順序遞增1如何實現。如輸入abc,輸出bcd

vb中輸入壹串字符串,字符串中每個字符字典順序遞增1如何實現。如輸入abc,輸出bcd

Private Sub Command1_Click()

dim a,b as string

a=inputbox("輸入字符串")

For i = 1 To Len(a)

b=b & chr(asc(mid(a,i,1))+1)

next

msgbox b

next