您好,登錄后才能下訂單哦!
請(qǐng)求超時(shí)!
本篇文章給大家分享的是有關(guān)java中怎么統(tǒng)計(jì)字符串中大寫字母,小編覺(jué)得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說(shuō),跟著小編一起來(lái)看看吧。
具體如下:
public class TestSubstring { public static void main(String[] args) { getCount("adsJKJ3K21AfaAD134F13241d134134s141faAAFDF"); } //統(tǒng)計(jì)字符串中,大寫字母,小寫字母,數(shù)字出現(xiàn)的次數(shù) public static void getCount(String str) { int upper = 0; int lower = 0; int digi = 0; for (int i = 0, len = str.length(); i < len; i++) { char c = str.charAt(i); if (c >= 'A' && c <= 'Z') { upper++; } else if (c >= 'a' && c <= 'z') { lower++; } else if (c >= '0' && c <= '9') { digi++; } } System.out.println("大寫字母:" + upper); //大寫字母:13 System.out.println("小寫字母:" + lower); //小寫字母:9 System.out.println("數(shù)字:" + digi); //數(shù)字:20 }}
以上就是java中怎么統(tǒng)計(jì)字符串中大寫字母,小編相信有部分知識(shí)點(diǎn)可能是我們?nèi)粘9ぷ鲿?huì)見(jiàn)到或用到的。希望你能通過(guò)這篇文章學(xué)到更多知識(shí)。更多詳情敬請(qǐng)關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。
億速云公眾號(hào)
手機(jī)網(wǎng)站二維碼
Copyright ? Yisu Cloud Ltd. All Rights Reserved. 2018 版權(quán)所有
廣州億速云計(jì)算有限公司粵ICP備17096448號(hào)-1 粵公網(wǎng)安備 44010402001142號(hào)增值電信業(yè)務(wù)經(jīng)營(yíng)許可證編號(hào):B1-20181529