go_字符和字符串处理

Posted 小白兔奶糖

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了go_字符和字符串处理相关的知识,希望对你有一定的参考价值。

rune相当于go的char

使用range遍历pos,rune对

使用utf8.RuneCountInString(s)获得字符数量

使用len获得字节长度,使用[]byte获得字节

一般把字节转成[]rune,更加容易操作

package main

import (
	"fmt"
	"unicode/utf8"
)

func main() {
	s:="Yes我爱上百度!"
	fmt.Println(s)
	for _,b:=range []byte(s)  {
		fmt.Printf("%X ",b)
	}
	fmt.Println()

	for i,ch:=range s{//ch is  a rune
		fmt.Printf("(%d %X)",i,ch)
	}
	fmt.Println()
	fmt.Println("Rune 长度",
			utf8.RuneCountInString(s))

	bytes :=[]byte(s)
	for len(bytes)>0{
		ch,size:=utf8.DecodeRune(bytes)
		bytes = bytes[size:]
		fmt.Printf("%c ",ch)
	}
	fmt.Println()

	for i,ch :=range []rune(s){
		fmt.Printf("(%d %c)",i,ch)
	}
	fmt.Println()
}

  

 

以上是关于go_字符和字符串处理的主要内容,如果未能解决你的问题,请参考以下文章

go语言怎么将二进制转为字符串

片段(Java) | 机试题+算法思路+考点+代码解析 2023

比较 C# 中的字符串片段并从集合中删除项目

go处理中文字符串

56_异常处理error,errors和painc的使用

CSP核心代码片段记录