regular.go 678 B

1234567891011121314151617181920212223242526
  1. package model
  2. import (
  3. "bytes"
  4. "regexp"
  5. )
  6. // var .
  7. var (
  8. EmojiPattern = regexp.MustCompile(`[\x{1F600}-\x{1F6FF}|[\x{2600}-\x{26FF}]`)
  9. NamePattern = regexp.MustCompile("^[A-Za-z0-9\uAC00-\uD788\u3041-\u309E\u30A1-\u30FE\u3131-\u3163\u4E00-\u9FA5\uF92C-\uFA29_\\-]+$")
  10. )
  11. // HasEmoji is used to check string is contain emoji
  12. func HasEmoji(s string) bool {
  13. return EmojiPattern.MatchString(s)
  14. }
  15. // ValidName check string is contain special characters.
  16. func ValidName(s string) bool {
  17. h := []byte(s)
  18. if bytes.Contains(h, []byte("\xF0\x9F")) || bytes.Contains(h, []byte("\xC2\xA0")) {
  19. return false
  20. }
  21. return NamePattern.MatchString(s) && !EmojiPattern.MatchString(s)
  22. }