当前位置: 首页>>代码示例>>Golang>>正文


Golang go-runewidth.StringWidth函数代码示例

本文整理汇总了Golang中github.com/mattn/go-runewidth.StringWidth函数的典型用法代码示例。如果您正苦于以下问题:Golang StringWidth函数的具体用法?Golang StringWidth怎么用?Golang StringWidth使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了StringWidth函数的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。

示例1: trimStr2Runes

func trimStr2Runes(s string, w int) []rune {
	if w <= 0 {
		return []rune{}
	}
	sw := rw.StringWidth(s)
	if sw > w {
		return []rune(rw.Truncate(s, w, dot))
	}
	return str2runes(s) //[]rune(rw.Truncate(s, w, ""))
}
开发者ID:j4ustin,项目名称:go-ethereum,代码行数:10,代码来源:helper.go

示例2: TrimStrIfAppropriate

// TrimStrIfAppropriate trim string to "s[:-1] + …"
// if string > width otherwise return string
func TrimStrIfAppropriate(s string, w int) string {
	if w <= 0 {
		return ""
	}

	sw := rw.StringWidth(s)
	if sw > w {
		return rw.Truncate(s, w, dot)
	}

	return s
}
开发者ID:sguiheux,项目名称:termui,代码行数:14,代码来源:helper.go

示例3: BenchmarkOtherlib3

func BenchmarkOtherlib3(b *testing.B) {
	for n := 0; n < b.N; n++ {
		_ = mattn.StringWidth("あいうえおあいうえおえおおおおおおおおおおおおおおおおおおおおおおおおおおおおおお")
	}
}
开发者ID:lucy,项目名称:runewidth,代码行数:5,代码来源:bench_test.go

示例4: BenchmarkOtherlib2

func BenchmarkOtherlib2(b *testing.B) {
	for n := 0; n < b.N; n++ {
		_ = mattn.StringWidth("■㈱の世界①")
	}

}
开发者ID:lucy,项目名称:runewidth,代码行数:6,代码来源:bench_test.go

示例5: BenchmarkOtherlibEasyString

func BenchmarkOtherlibEasyString(b *testing.B) {
	for n := 0; n < b.N; n++ {
		_ = mattn.StringWidth("abcdefgkljjsfkjn")
	}
}
开发者ID:lucy,项目名称:runewidth,代码行数:5,代码来源:bench_test.go

示例6: BenchmarkOtherlib4

func BenchmarkOtherlib4(b *testing.B) {
	for n := 0; n < b.N; n++ {
		_ = mattn.StringWidth(long)
	}
}
开发者ID:lucy,项目名称:runewidth,代码行数:5,代码来源:bench_test.go

示例7: strWidth

func strWidth(s string) int {
	return rw.StringWidth(s)
}
开发者ID:j4ustin,项目名称:go-ethereum,代码行数:3,代码来源:helper.go

示例8: toTmAttr

	ColorBlue
	ColorMagenta
	ColorCyan
	ColorWhite
)

const NumberofColors = 8 //Have a constant that defines number of colors
const (
	AttrBold Attribute = 1 << (iota + 9)
	AttrUnderline
	AttrReverse
)

var (
	dot  = "…"
	dotw = rw.StringWidth(dot)
)

/* ----------------------- End ----------------------------- */

func toTmAttr(x Attribute) tm.Attribute {
	return tm.Attribute(x)
}

func str2runes(s string) []rune {
	return []rune(s)
}

func trimStr2Runes(s string, w int) []rune {
	if w <= 0 {
		return []rune{}
开发者ID:j4ustin,项目名称:go-ethereum,代码行数:31,代码来源:helper.go


注:本文中的github.com/mattn/go-runewidth.StringWidth函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。