codecamp

GoFrame gstr-大小写转换

ToLower

  • 说明:​ToLower​将​s​中所有​Unicode​字符都变为小写并返回其副本。  
  • 格式:

ToLower(s string) string

  • 示例:

func ExampleToLower() {
	var (
		s      = `GOFRAME`
		result = gstr.ToLower(s)
	)
	fmt.Println(result)

	// Output:
	// goframe
}

ToUpper

  • 说明:​ToUpper​将​s​中所有​Unicode​字符都变为大写并返回其副本。  
  • 格式:

ToUpper(s string) string

  • 示例:

func ExampleToUpper() {
	var (
		s      = `goframe`
		result = gstr.ToUpper(s)
	)
	fmt.Println(result)

	// Output:
	// GOFRAME
}

UcFirst

  • 说明:​UcFirst​将​s​中首字符变为大写并返回其副本。  
  • 格式:

UcFirst(s string) string

  • 示例:

func ExampleUcFirst() {
	var (
		s      = `hello`
		result = gstr.UcFirst(s)
	)
	fmt.Println(result)

	// Output:
	// Hello
}

LcFirst

  • 说明:​LcFirst​将​s​中首字符变为小写并返回其副本。  
  • 格式:

LcFirst(s string) string

  • 示例:

func ExampleLcFirst() {
	var (
		str    = `Goframe`
		result = gstr.LcFirst(str)
	)
	fmt.Println(result)

	// Output:
	// goframe
}

UcWords

  • 说明:​UcWords​将字符串​str​中每个单词的第一个字符变为大写。
  • 格式:

UcWords(str string) string

  • 示例:

func ExampleUcWords() {
	var (
		str    = `hello world`
		result = gstr.UcWords(str)
	)
	fmt.Println(result)

	// Output:
	// Hello World
}

IsLetterLower

  • 说明:​IsLetterLower​验证给定的字符​b​是否是小写字符。  
  • 格式:

IsLetterLower(b byte) bool

  • 示例:

func ExampleIsLetterLower() {
	fmt.Println(gstr.IsLetterLower('a'))
	fmt.Println(gstr.IsLetterLower('A'))

	// Output:
	// true
	// false
}

IsLetterUpper

  • 说明:​IsLetterUpper​验证字符​b​是否是大写字符。  
  • 格式:

IsLetterUpper(b byte) bool

  • 示例:

func ExampleIsLetterUpper() {
	fmt.Println(gstr.IsLetterUpper('A'))
	fmt.Println(gstr.IsLetterUpper('a'))

	// Output:
	// true
	// false
}


GoFrame gstr-字符串创建
GoFrame gstr-字符串比较
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

GoFrame 核心组件

GoFrame 核心组件-数据库ORM

GoFrame 模块列表

GoFrame 模块列表-单元测试

GoFrame 模块列表-功能调试

GoFrame WEB服务开发

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }