Documentation
¶
Index ¶
- func ConvertString(src string, srcCharset string, tagCharset string) string
- func DecodeTextToUTF8(filename string) (string, error)
- func DeleteInvisibleCh(str string) string
- func DetectTextFileCharset(filename string) (string, error)
- func FindIPStrings(src string) ([]string, bool)
- func FindStringWithRegexp(src string, regstr string) ([]string, bool)
- func FirstToLower(s string) string
- func FirstToUpper(s string) string
- func GBKToUTF8(s []byte) ([]byte, error)
- func GBKToUTF8Str(str string) (string, error)
- func GetStringBetween(str, start, end string) string
- func GuessCharset(src string) (string, error)
- func IsAlphaNumberOnly(str string) bool
- func IsAlphaNumberUnderlineOnly(str string) bool
- func IsAlphaOnly(str string) bool
- func IsChinaMobile(b []byte) bool
- func IsChinaMobileString(str string) bool
- func IsChineseChar(str string) bool
- func IsChineseString(str string) bool
- func IsGBKData(data []byte) bool
- func IsGBKStr(str string) bool
- func IsIPAddress(b []byte) bool
- func IsIPAddressString(str string) bool
- func IsLowerCaseOnly(str string) bool
- func IsMail(b []byte) bool
- func IsMailString(str string) bool
- func IsNickname(b []byte) bool
- func IsNicknameString(str string) bool
- func IsNumberOnly(str string) bool
- func IsUTF8Str(str string) bool
- func IsUpperCaseOnly(str string) bool
- func IsUserName(b []byte) bool
- func IsUserNameString(str string) bool
- func RemoveInvisibleChars(input string) string
- func UTF8ToGBK(s []byte) ([]byte, error)
- func UTF8ToGBKStr(str string) (string, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ConvertString ¶
ConvertString 字符串编码转换 从srcCharset -> tagCharset。比如 s := ConvertString(s, "gbk", "utf-8")
func DecodeTextToUTF8 ¶
DecodeTextToUTF8 test charset of text file and decode non-utf8 to utf8
func DeleteInvisibleCh ¶ added in v0.0.8
DeleteInvisibleCh 删除不可见字符
func DetectTextFileCharset ¶
DetectTextFileCharset to detext the char set of text files
func FindIPStrings ¶ added in v0.0.8
FindIPStrings 根据正则表达是找出所有匹配IP串
func FindStringWithRegexp ¶ added in v0.0.8
FindStringWithRegexp 根据正则表达是找出所有匹配串
func GetStringBetween ¶
GetStringBetween 获取两个子串之间的内容这个函数GetStringBetween接受三个参数:一个主字符串str,一个起始子串start和一个结束子串end。函数首先查找起始子串和结束子串在主字符串中的位置,然后返回它们之间的内容。如果任一子串未找到,函数返回空字符串。
func IsAlphaNumberOnly ¶ added in v0.0.8
IsAlphaNumberOnly 判断数字和26字母组成的串
func IsAlphaNumberUnderlineOnly ¶ added in v0.0.8
IsAlphaNumberUnderlineOnly 判断数字、下划线和26字母组成的串
func IsChinaMobile ¶ added in v0.0.8
IsChinaMobile 检验是否为合法的中国手机号, 不是那么太精细 只要是 13,14,15,18 开头的 11 位数字就认为是中国手机号
func IsChinaMobileString ¶ added in v0.0.8
IsChinaMobileString 同 func IsChinaMobile(b []byte) bool
func IsChineseString ¶ added in v0.0.8
IsChineseString 判断全中文字符串
func IsIPAddress ¶ added in v0.0.8
IsIPAddress validate ipv4 address
func IsIPAddressString ¶ added in v0.0.8
IsIPAddressString 同 func IsIPAddress(b []byte) bool
func IsLowerCaseOnly ¶ added in v0.0.8
IsLowerCaseOnly 判断只有小写字母组成的串
func IsMail ¶ added in v0.0.8
IsMail 检验是否为合法的电子邮箱, 考虑到各个网站的 mail 要求不一样, 这里匹配比较宽松 邮箱用户名可以包含 0-9, A-Z, a-z, -, _, . 开头字母不能是 -, _, . 结尾字母不能是 -, _, . -, _, . 这三个连接字母任意两个不能连续, 如不能出现 --, __, .., -_, -., _. 邮箱的域名可以包含 0-9, A-Z, a-z, - 连接字符 - 只能出现在中间, 不能连续, 如不能 -- 支持多级域名, x@y.z, x@y.z.w, x@x.y.z.w.e
func IsMailString ¶ added in v0.0.8
IsMailString 同 func IsMail(b []byte) bool
func IsNickname ¶ added in v0.0.8
IsNickname 检验是否为合法的昵称, 合法的字符有 0-9, A-Z, a-z, _, 汉字 字符 '_' 只能出现在中间且不能重复, 如 "__"
func IsNicknameString ¶ added in v0.0.8
IsNicknameString 同 func IsNickname(b []byte) bool
func IsUpperCaseOnly ¶ added in v0.0.8
IsUpperCaseOnly 判断只有大写字母组成的穿
func IsUserName ¶ added in v0.0.8
IsUserName 检验是否为合法的用户名, 合法的字符有 0-9, A-Z, a-z, _ 第一个字母不能为 _, 0-9 最后一个字母不能为 _, 且 _ 不能连续
func IsUserNameString ¶ added in v0.0.8
IsUserNameString 同 func IsName(b []byte) bool
func RemoveInvisibleChars ¶
RemoveInvisibleChars 删除不可见字符
Types ¶
This section is empty.