JS中截取字符串很简单,直接使用substr函数
substr() 方法可在字符串中截取从开始下标开始的指定数目的字符。下标是从0开始算
例如:
"21".substr(0,1) 返回2
golang实现的substr
代码语言:javascript复制// 截取字符串,支持多字节字符
// start:起始下标,负数从从尾部开始,最后一个为-1
// length:截取长度,负数表示截取到末尾
func SubStr(str string, start int, length int) (result string) {
s := []rune(str)
total := len(s)
if total == 0 {
return
}
// 允许从尾部开始计算
if start < 0 {
start = total start
if start < 0 {
return
}
}
if start > total {
return
}
// 到末尾
if length < 0 {
length = total
}
end := start length
if end > total {
result = string(s[start:])
} else {
result = string(s[start:end])
}
return
}
SubStr("hello",0,1) 返回h
如果倒着截取,负数就是倒着取,倒着取第一个,SubStr("hello",-1,1) 返回 o