golang統計出其中英文字母、空格、數字和其它字元的個數

來源:互聯網
上載者:User

方法一

通過ASCII碼錶判斷並統計

package mainimport "fmt"func charactortype() {    var s2 string = "112aaaaFGG123        *&^%"    var e,s,d,o int    for i := o; i < len(s2); i++ {        switch {        case 64 < s2[i] && s2[i] < 91:            e += 1        case 96 < s2[i] && s2[i] < 123:            e += 1        case 47 < s2[i] && s2[i] < 58:            d += 1        case s2[i] == 32:            s += 1        default:            o += 1        }    }    fmt.Printf("字串英文字元個數是: %d\n",e)    fmt.Printf("字串數字字元個數是: %d\n",d)    fmt.Printf("字串空白字元個數是: %d\n",s)    fmt.Printf("字串其它字元個數是: %d\n",o)}func main() {    charactortype()}

方法二

通過regexpRegex匹配並統計

package mainimport (    "fmt"    "regexp")// 練習四: 統計一個字串的字母,數字,空格,其他字元個數func statisticalCharacterNumber(s string) {    // 樣本字串    // var s = "MemTotal: 100111 KB"    // 建立正則匹配字母、數字、空格    // \d 匹配數。 MustCompile必須    var rNum = regexp.MustCompile(`\d`)    // [a-zA-Z] 匹配大小寫字母    var rCharacter = regexp.MustCompile("[a-zA-Z]")    // 匹配空格    var rBlank = regexp.MustCompile(" ")    // 定義其它字元變數    var specialcharacter int    // 擷取數位個數    num := len(rNum.FindAllStringSubmatch(s,-1))        // 擷取字母的個數    character := len(rCharacter.FindAllStringSubmatch(s,-1))    // 擷取空格的個數    blank := len(rBlank.FindAllStringSubmatch(s,-1))    fmt.Printf("數字個數%d\n",num)    fmt.Printf("字母個數%d\n",character)    fmt.Printf("空格個數%d\n",blank)    //其它字元    specialcharacter = len(s) - num - character - blank    fmt.Printf("其它字元個數%d\n",specialcharacter)    fmt.Printf("總個數%d\n",len(s))}func main() {    statisticalCharacterNumber("MemTotal: 100111 KB")}
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.