gpt4 book ai didi

Golang - 从字符串中删除所有 Unicode 换行符

转载 作者:IT王子 更新时间:2023-10-29 00:43:46 30 4
gpt4 key购买 nike

如何从 GoLang 中的 UTF-8 字符串中删除所有 Unicode 换行符?我找到了 this answer for PHP .

最佳答案

您可以使用 strings.Map :

func filterNewLines(s string) string {
return strings.Map(func(r rune) rune {
switch r {
case 0x000A, 0x000B, 0x000C, 0x000D, 0x0085, 0x2028, 0x2029:
return -1
default:
return r
}
}, s)
}

playground

关于Golang - 从字符串中删除所有 Unicode 换行符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38305668/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com