Make first letter of string lower case in golang

huangapple go评论77阅读模式
英文:

Make first letter of string lower case in golang

问题

我想要将给定字符串的首字母小写化。我已经查看了casesstrings包,最接近的是cases.Title

cases.Title(language.Und, cases.NoLower).String("MyString")

这个函数可以接受第二个参数cases.someThing,但是我找不到一种只将第一个字符小写化的方法。

PS. 使用的是Go版本1.20。

英文:

I'd like to de-capitalise the first letter of a given string. I've looked into the cases and strings packages, the closest I found was cases.Title

cases.Title(language.Und, cases.NoLower).String("MyString")

Which can take in a second argument cases.someThing however with this, I cannot find a way need to achieve lowering just the first character.

PS. Using go version 1.20

答案1

得分: 1

在Go语言中,编写一个简单高效的函数。

package main

import (
	"fmt"
	"unicode"
	"unicode/utf8"
)

func firstToLower(s string) string {
	r, size := utf8.DecodeRuneInString(s)
	if r == utf8.RuneError && size <= 1 {
		return s
	}
	lc := unicode.ToLower(r)
	if r == lc {
		return s
	}
	return string(lc) + s[size:]
}

func main() {
	fmt.Println(firstToLower("Hello World"))
	fmt.Println(firstToLower("hello World"))
}

点击此处查看代码运行结果

输出结果为:

hello World
hello World
英文:

In Go, write a simple and efficient function.

package main

import (
	&quot;fmt&quot;
	&quot;unicode&quot;
	&quot;unicode/utf8&quot;
)

func firstToLower(s string) string {
	r, size := utf8.DecodeRuneInString(s)
	if r == utf8.RuneError &amp;&amp; size &lt;= 1 {
		return s
	}
	lc := unicode.ToLower(r)
	if r == lc {
		return s
	}
	return string(lc) + s[size:]
}

func main() {
	fmt.Println(firstToLower(&quot;Hello World&quot;))
	fmt.Println(firstToLower(&quot;hello World&quot;))
}

https://go.dev/play/p/Vtx75XKWJsD

hello World
hello World

答案2

得分: 0

像这样吗?

https://goplay.tools/snippet/c7b_OZ19oMC

func firstLetterToLower(s string) string {

	if len(s) == 0 {
		return s
	}

	r := []rune(s)
	r[0] = unicode.ToLower(r[0])

	return string(r)
}
英文:

Something like this?

https://goplay.tools/snippet/c7b_OZ19oMC

func firstLetterToLower(s string) string {

	if len(s) == 0 {
		return s
	}

	r := []rune(s)
	r[0] = unicode.ToLower(r[0])

	return string(r)
}

答案3

得分: 0

不使用unicode库的替代解决方案,用于ASCII拉丁字符。由于小写字符的字节值比大写字符大32,因此这应该可以工作。

package main

import (
	"fmt"
)

func main() {
	fmt.Println(toLowerFirstC("Hello World"))
}

func toLowerFirstC(s string) string {
	
	if len(s) != 0 && (s[0] <= 90 && s[0] >= 65) {
		return string(s[0] + 32) + string(s[1:])
	}
	
	return s
}

输出:

hello World
英文:

Alternative solution without using unicode library for ASCII latin characters. Since byte value of lower case of these characters 32 more compared to upper case this should work.

package main

import (
	&quot;fmt&quot;
)

func main() {
	fmt.Println(toLowerFirstC(&quot;Hello World&quot;))
}

func toLowerFirstC(s string) string {
	
	if len(s) != 0 &amp;&amp; (s[0] &lt;= 90 &amp;&amp; s[0] &gt;= 65) {
		return string(s[0] + 32) + string(s[1:])
	}
	
	return s
}

Output:

hello World

huangapple
  • 本文由 发表于 2023年4月12日 00:17:09
  • 转载请务必保留本文链接:https://go.coder-hub.com/75988064.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定