Home > Backend Development > Golang > How to use regular expressions in golang to verify whether the input is a mainland China resident ID number

How to use regular expressions in golang to verify whether the input is a mainland China resident ID number

PHPz
Release: 2023-06-24 08:49:00
Original
841 people have browsed it

In Golang, using regular expressions to verify whether the input is a Mainland China resident ID number can be achieved by using the regular expression matching function MatchString() in the regular expression library regexp built into the Go language.

Mainland China’s resident identity card number is composed of 18 digits and letters; the first 17 digits are the area code and date of birth, and the last digit is the check code. In order to verify whether the input is a valid ID number, it needs to be verified whether it meets the format requirements of the ID number.

The following is a basic regular expression, used to match whether the input meets the format requirements of the ID number:

^([1-9]\d{5})(\d{4})(0[1-9]|1[0-2])([0-2][1-9]|[1-3]\d|4[0-6]|5[0-2])(\d{3})(\d|[Xx])$
Copy after login

Among them, ^ represents the beginning of the input string, $ represents the input string At the end, () indicates the following part to be matched.

  • [1-9]\d{5}: Indicates the provincial area code (digits 1-6), the first digit must be a number from 1 to 9, and the next 5 digits can be any number.
  • \d{4}: Indicates the year of birth (7th-10th digit).
  • (0[1-9]|1[0-2]): Indicates the birth month (11th-12th digit), that is, it must be a number from 01 to 12.
  • (0-2|[1-3]\d|4[0-6]|5[0-2]): Indicates the date of birth (13th-14th digit), that is, it must be 01~ The number 31.
  • \d{3}: Indicates the personal sequence number (digits 15-17), which is a randomly assigned 3-digit number.
  • (\d|[Xx]): Indicates the check code (the 18th digit), which can be a number or the capital letter "X".

Write the above regular expression into the code:

func isIDCardNumber(str string) bool {
    regIDCard := "^([1-9]\d{5})(\d{4})(0[1-9]|1[0-2])([0-2][1-9]|[1-3]\d|4[0-6]|5[0-2])(\d{3})(\d|[Xx])$"
    reg := regexp.MustCompile(regIDCard)
    return reg.MatchString(str)
}
Copy after login

In the above code, use the Regexp.MustCompile() method to compile the regular expression into a Regexp instance, and then use reg .MatchString() method to match the input string.

Finally, use this function in the program to verify whether the input is a valid ID number:

func main() {
    idCardNumber := "411281199601017891" // 合法身份证号码
    if isIDCardNumber(idCardNumber) {
        fmt.Println("输入是有效的身份证号码")
    } else {
        fmt.Println("输入不是有效的身份证号码")
    }
}
Copy after login

In short, use regular expressions in Golang to verify mainland China resident ID numbers , which can ensure the legality and correctness of the input and lay a solid foundation for developing more complete applications.

The above is the detailed content of How to use regular expressions in golang to verify whether the input is a mainland China resident ID number. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template