Golang 統計字串字數

來源:互聯網
上載者:User
這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。

比如新浪微博發微博的輸入框有一個已輸入字數的統計,它的規則推測是:漢字和中文標點算 1 個字數,英文和其他符號算 0.5 個字數。不足 1 個字算 1 個。大家可以去微博體驗一下計算方式。

golang 可以使用正則和 unicode 包的方法判斷。

以下函數 GetStrLength 返回輸入的字串的字數,每個漢字和中文標點算 1 個字數,英文和其他字元算半個字數,不足 1 個字算 1 個。

// GetStrLength 返回輸入的字串的字數,漢字和中文標點算 1 個字數,英文和其他字元 2 個算 1 個字數,不足 1 個算 1個func GetStrLength(str string) float64 {var total float64 reg := regexp.MustCompile("/·|,|。|《|》|‘|’|”|“|;|:|【|】|?|(|)|、/") for _, r := range str {if unicode.Is(unicode.Scripts["Han"], r) || reg.Match([]byte(string(r))) {total = total + 1} else {total = total + 0.5}} return math.Ceil(total)}

原文:https://blog.tanteng.me/2018/05/golang-str-length/

270 次點擊  
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.