golang 正则表达式常用

  1. regex_const.go

regex_const.go

package check

import (
    "regexp"
)s

const (
    // 中国大陆手机号码正则匹配, 不是那么太精细
    // 只要是 13,14,15,17,18,19 开头的 11 位数字就认为是中国手机号
    chinaMobilePattern = `^1[0-9]{10}$`
    // 用户昵称的正则匹配, 合法的字符有 0-9, A-Z, a-z, _, 汉字
    // 字符 '_' 只能出现在中间且不能重复, 如 "__"
    nicknamePattern = `^[a-z0-9A-Z\p{Han}]+(_[a-z0-9A-Z\p{Han}]+)*?$`
    // 用户名的正则匹配, 合法的字符有 0-9, A-Z, a-z, _
    // 第一个字母不能为 _, 0-9
    // 最后一个字母不能为 _, 且 _ 不能连续
    usernamePattern = `^[a-zA-Z][a-z0-9A-Z]*(_[a-z0-9A-Z]+)*?$`
    // 电子邮箱的正则匹配, 考虑到各个网站的 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
    mailPattern = `^[a-z0-9A-Z]+([_\-\.][a-z0-9A-Z]+)*?@[a-z0-9A-Z]+([\-\.][a-z0-9A-Z]+)*?\.[a-zA-Z]{2,}$`

    chineseNamePattern   = "^\\p{Han}+(\u00B7\\p{Han}+)*?$"
    chineseNameExPattern = "^\\p{Han}+([\u00B7\u2022\u2027\u30FB\u002E\u0387\u16EB\u2219\u22C5\uFF65\u05BC]\\p{Han}+)*?$"
)

var (
    chinaMobileRegexp   = regexp.MustCompile(chinaMobilePattern)
    nicknameRegexp      = regexp.MustCompile(nicknamePattern)
    usernameRegexp      = regexp.MustCompile(usernamePattern)
    mailRegexp          = regexp.MustCompile(mailPattern)
    chineseNameRegexp   = regexp.MustCompile(chineseNamePattern)
    chineseNameExRegexp = regexp.MustCompile(chineseNameExPattern)
)

// 检验是否为合法的中国手机号, 不是那么太精细
// 只要是 13,14,15,18 开头的 11 位数字就认为是中国手机号
func IsChinaMobile(b []byte) bool {
    if len(b) != 11 {
        return false
    }
    return chinaMobileRegexp.Match(b)
}

// 同 func IsChinaMobile(b []byte) bool
func IsChinaMobileString(s string) bool {
    if len(s) != 11 {
        return false
    }
    return chinaMobileRegexp.MatchString(s)
}

// 检验是否为合法的昵称, 合法的字符有 0-9, A-Z, a-z, _, 汉字
// 字符 '_' 只能出现在中间且不能重复, 如 "__"
func IsNickname(b []byte) bool {
    if len(b) == 0 {
        return false
    }
    return nicknameRegexp.Match(b)
}

// 同 func IsNickname(b []byte) bool
func IsNicknameString(s string) bool {
    if len(s) == 0 {
        return false
    }
    return nicknameRegexp.MatchString(s)
}

// 检验是否为合法的用户名, 合法的字符有 0-9, A-Z, a-z, _
// 第一个字母不能为 _, 0-9
// 最后一个字母不能为 _, 且 _ 不能连续
func IsUserName(b []byte) bool {
    if len(b) == 0 {
        return false
    }
    return usernameRegexp.Match(b)
}

// 同 func IsName(b []byte) bool
func IsUserNameString(s string) bool {
    if len(s) == 0 {
        return false
    }
    return usernameRegexp.MatchString(s)
}

// 检验是否为合法的电子邮箱, 考虑到各个网站的 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 IsMail(b []byte) bool {
    if len(b) < 6 { // x@x.xx
        return false
    }
    return mailRegexp.Match(b)
}

// 同 func IsMail(b []byte) bool
func IsMailString(s string) bool {
    if len(s) < 6 { // x@x.xx
        return false
    }
    return mailRegexp.MatchString(s)
}

// IsChineseName 检验是否为有效的中文姓名(比如 张三, 李四, 张三·李四)
func IsChineseName(b []byte) bool {
    return chineseNameRegexp.Match(b)
}

// 同 IsChineseName(b []byte) bool
func IsChineseNameString(s string) bool {
    return chineseNameRegexp.MatchString(s)
}

// IsChineseNameEx 检验是否为有效的中文姓名(比如 张三, 李四, 张三·李四),
// 主要功能和 IsChineseName 相同, 但是如果姓名中包含不规范的间隔符, 会自动修正为正确的间隔符 '\u00B7', 并返回正确的结果.
func IsChineseNameEx(b []byte) ([]byte, bool) {
    if chineseNameRegexp.Match(b) {
        return b, true
    }
    if !chineseNameExRegexp.Match(b) {
        return b, false
    }
    list := []rune(string(b))
    for i := 0; i < len(list); i++ {
        switch list[i] {
        case '\u2022', '\u2027', '\u30FB', '\u002E', '\u0387', '\u16EB', '\u2219', '\u22C5', '\uFF65', '\u05BC':
            list[i] = '\u00B7'
        }
    }
    return []byte(string(list)), true
}

// 同 IsChineseNameEx(b []byte) ([]byte, bool)
func IsChineseNameStringEx(s string) (string, bool) {
    if chineseNameRegexp.MatchString(s) {
        return s, true
    }
    if !chineseNameExRegexp.MatchString(s) {
        return s, false
    }
    list := []rune(s)
    for i := 0; i < len(list); i++ {
        switch list[i] {
        case '\u2022', '\u2027', '\u30FB', '\u002E', '\u0387', '\u16EB', '\u2219', '\u22C5', '\uFF65', '\u05BC':
            list[i] = '\u00B7'
        }
    }
    return string(list), true
}

转载请注明来源,欢迎对文章中的引用来源进行考证,欢迎指出任何有错误或不够清晰的表达。也可以邮件至 296245956@qq.com
github