當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。