vb中判斷n是大寫字母小寫字母數字字元還是其他字元

2021-03-04 01:50:05 字數 1173 閱讀 4875

1樓:匿名使用者

#inlude

using namespace std;

void judgecharacter(char input)if(cinput >='a' && cinput <= 'z')if(cinput >= '0' && cinput <= '9')msgbox << "提示錯屬誤" << endl;

return ;}

2樓:匿名使用者

用ascii值判斷。具體的ascii值請查ascii值表,課本上有的

vb程式設計:輸入一個字串,判斷其中有多少大寫字母小寫字母數字字元空

3樓:匿名使用者

dim num1 as integer,num2 as integer

dim num3 as integer,num4 as integer,num5 as integer

dim i as integer

dim s as string

s = inputbox("輸入字串:")

for i = 1 to len(s)

if mid(s,i,1)>="a" and mid(s,i,1)<="z" then

num1 = num1 + 1

elseif mid(s,i,1)>="a" and mid(s,i,1)<="z" then

num2 = num2 + 1

elseif mid(s,i,1)>="0" and mid(s,i,1)<="9" then

num3 = num3 + 1

elseif mid(s,i,1) =" " or mid(s,i,1)=" " then

num4 = num4 + 1

else

num5 = num5 + 1

end if

next i

print "大寫字母有:";num1;"個62616964757a686964616fe78988e69d8331333361316130"

print "小寫字母有:";num2;"個"

print "數字字元有:";num3;"個"

print "空格字元有:";num4;"個"

print "其它字元有:";num5;"個"

在中如何將大寫字母改成小寫字母,在word中如何將大寫字母改成小寫字母

按ctrl h開啟替換對話方塊,單擊高階,勾選使用萬用字元和突出顯示所有在該範圍找到的專案,在查詢內容框中輸入 a z 單擊 查詢全部 然後按shift f3進行切換大小寫 選中 格式 更改大小寫然後選擇更改的格式即可。excel如何實現小寫字母自動轉大寫字母?回答 在同一個工作薄中再新建一個空白的...

正規表示式,字母只能包含大寫字母小寫字母數字 和 ,且必須由大寫字母,小寫字母和數字開頭

a za z d a za z d p p d 正規表示式 要求6 20位,只能有大小寫字母和數字,並且大小寫字母和數字都要有。0 9 a za z 0 9a za z 釋義 匹配一行的開頭位置。0 9 斷言此位置之後,字串結尾之前,所有的字元不能全部由數字組成。a za z 斷言此位置之後,字串結...

輸入字元如果是大寫字母就轉換為小寫字母若不是字母,剛不做轉換,輸出最後所得字元

include void main printf 輸出字元為 c n c 輸入一個字元,判斷是否是大寫字母,如果是轉換成小寫字母,如果不是不轉換,並輸出最後得到的字母。include void main jiangsfq 2014 02 14 0 0 include include int main...