- 三个平台的SkuName长度限制常量规范化
This commit is contained in:
@@ -247,7 +247,7 @@ func Base64DecodeMultiString(strs ...string) (decodedData [][]byte, err error) {
|
||||
return decodedData, nil
|
||||
}
|
||||
|
||||
// 只适合与纯英文的情况
|
||||
// 限制的是字节数,只适合纯英文的情况,推荐使用LimitMixedStringLen,除非确定是纯英文,且对性能相当敏感
|
||||
func LimitStringLen(str string, maxByteCount int) (limitedStr string) {
|
||||
if maxByteCount > 0 {
|
||||
if strLen := len(str); strLen > maxByteCount {
|
||||
|
||||
Reference in New Issue
Block a user