golang截取字符串BodyContent

Posted erlang/golang 码农

tags:

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

对于字符串操作,截取字符串是一个常用的,

而当你需要截取字符串中的一部分时,可以使用像截取数组某部分那样来操作,示例代码如下:

package main
 
import "fmt"
 
func main() { 
  str := "XBodyContentX"
  content := str[1 : len(str)-1]
  fmt.Println(content)
}

运行结果为:BodyContent

 

以上是关于golang截取字符串BodyContent的主要内容,如果未能解决你的问题,请参考以下文章

golang依次替换字符串中相同的值

在 golang 中创建一片缓冲通道

textView截取字符串-医生工作台1期

Golang 创建切片地图

Golang中的GoschedGoexitGOMAXPROCS

在golang的io.read实现中状态是否被破坏?