我是靠谱客的博主 岁月静好,最近开发中收集的这篇文章主要介绍GoLang之标准库unicode包,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

基于Windos系统上Go SDK v1.8进行讲解

1.IsLetter函数

image-20220131152844999

image-20220131154951725

image-20220131161434449

image-20220131161504203

2.IsLower函数

image-20220131155205950

3.IsUpper函数

image-20220131155216475

4.ToLower函数

image-20220131155239590

5.ToUpper函数

image-20220131155310677

6.IsNumber函数

image-20220131160007378

image-20220131155944497

7.IsDigit函数

image-20220131160514902

image-20220131162001394

8.IsPunct函数

IsPunct报告一个字符是否是unicode标点字符

func IsPunct(r rune) bool

func main() {
	fmt.Println(unicode.IsPunct(','))                      //true
	fmt.Println(unicode.IsPunct('+'))                      //false
	fmt.Println(unicode.IsPunct('a'))                      //false
	fmt.Println(unicode.IsPunct(' '))                      //false
	fmt.Println(unicode.IsPunct('\''))                     //true
	fmt.Println(unicode.IsPunct('_'))                      //true
	fmt.Println(unicode.IsPunct('-'))                      //true
}


最后

以上就是岁月静好为你收集整理的GoLang之标准库unicode包的全部内容,希望文章能够帮你解决GoLang之标准库unicode包所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(438)

评论列表共有 0 条评论

立即
投稿
返回
顶部