Documentation ¶
Index ¶
Constants ¶
View Source
const ( // TypeDigit 数字 TypeDigit Type = 1 // TypeLowerCase 小写字母 TypeLowerCase Type = 1 << 1 // TypeUpperCase 大写字母 TypeUpperCase Type = 1 << 2 // TypeSpecial 特殊符号 TypeSpecial Type = 1 << 3 // TypeMixed 混合类型 TypeMixed = (TypeDigit | TypeUpperCase | TypeLowerCase | TypeSpecial) // CharsetDigit 数字字符组 CharsetDigit = "0123456789" // CharsetLowerCase 小写字母字符组 CharsetLowerCase = "abcdefghijklmnopqrstuvwxyz" // CharsetUpperCase 大写字母字符组 CharsetUpperCase = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" // CharsetSpecial 特殊字符数组 CharsetSpecial = " ~!@#$%^&*()_+-=[]{};'\\:\"|,./<>?" )
Variables ¶
This section is empty.
Functions ¶
Types ¶
Click to show internal directories.
Click to hide internal directories.