📌  相关文章
📜  如何使用正则表达式验证印度护照号码

📅  最后修改于: 2021-04-27 18:46:59             🧑  作者: Mango

给定一个由字母数字字符的字符串str ,任务是使用正则表达式检查给定的字符串是否为有效的护照号码
印度的有效护照号码必须满足以下条件:

  1. 它应该是八个字符长。
  2. 第一个字符应为大写字母。
  3. 接下来的两个字符应为数字,但第一个字符应为1-9之间的任何数字,第二个字符应为0-9之间的任何数字。
  4. 它应该是零或一个空白字符。
  5. 接下来的四个字符应为0到9之间的任何数字。
  6. 最后一个字符应为1到9之间的任何数字。

例子:

方法:想法是使用正则表达式解决此问题。可以按照以下步骤计算答案。

  1. 获取字符串。
  2. 创建一个正则表达式以检查印度的有效护照号码,如下所述:
  1. 在哪里:
    • ^表示字符串的开头。
    • [A-PR-WYa-pr-wy]表示字符串应以AZ开头(Q,X和Z除外)。
    • [1-9]表示第二个字符应为1-9中的任何数字。
    • \\ d表示第三个字符应为0-9之间的任何数字。
    • \\ s?表示字符串应为零或一个空白字符。
    • \\ d {4}表示接下来的四个字符应为0到9之间的任何数字。
    • [1-9]表示最后一个字符应为1-9中的任何数字。
    • $表示字符串的结尾。
  2. 将给定的字符串与正则表达式匹配。在Java,这可以通过使用Pattern.matcher()来完成。
  3. 如果字符串与给定的正则表达式匹配,则返回true;否则返回false。

下面是上述方法的实现:

Java
// Java program to validate
// passport number of India
// using regular expression
 
import java.util.regex.*;
 
class GFG {
 
    // Function to validate
    // passport number of India
    // using regular expression
    public static boolean isValidPassportNo(String str)
    {
        // Regex to check valid.
        // passport number of India
        String regex = "^[A-PR-WYa-pr-wy][1-9]\\d"
                       + "\\s?\\d{4}[1-9]$";
 
        // Compile the ReGex
        Pattern p = Pattern.compile(regex);
 
        // If the string is empty
        // return false
        if (str == null) {
            return false;
        }
 
        // Find match between given string
        // and regular expression
        // using Pattern.matcher()
        Matcher m = p.matcher(str);
 
        // Return if the string
        // matched the ReGex
        return m.matches();
    }
 
    // Driver code
    public static void main(String args[])
    {
 
        // Test Case 1:
        String str1 = "A21 90457";
        System.out.println(isValidPassportNo(str1));
 
        // Test Case 2:
        String str2 = "A0296457";
        System.out.println(isValidPassportNo(str2));
 
        // Test Case 3:
        String str3 = "Q2096453";
        System.out.println(isValidPassportNo(str3));
 
        // Test Case 4:
        String str4 = "12096457";
        System.out.println(isValidPassportNo(str4));
 
        // Test Case 5:
        String str5 = "A209645704";
        System.out.println(isValidPassportNo(str5));
    }
}


Python3
# Python3 program to validate passport
# number of India using regular expression
import re
 
# Function to validate the pin code
# of India.
 
 
def isValidPassportNo(string):
 
    # Regex to check valid pin code
    # of India.
    regex = "^[A-PR-WYa-pr-wy][1-9]\\d" +\
            "\\s?\\d{4}[1-9]$"
 
    # Compile the ReGex
    p = re.compile(regex)
 
    # If the string is empty
    # return false
    if (string == ''):
        return False
 
    # Pattern class contains matcher()
    # method to find matching between
    # given string and regular expression.
    m = re.match(p, string)
 
    # Return True if the string
    # matched the ReGex else False
    if m is None:
        return False
    else:
        return True
 
 
# Driver code.
if __name__ == "__main__":
 
    # Test Case 1
    str1 = "A21 90457"
    print(isValidPassportNo(str1))
 
    # Test Case 2:
    str2 = "A0296457"
    print(isValidPassportNo(str2))
 
    # Test Case 3:
    str3 = "Q2096453"
    print(isValidPassportNo(str3))
 
    # Test Case 4:
    str4 = "12096457"
    print(isValidPassportNo(str4))
 
    # Test Case 5:
    str5 = "A209645704"
    print(isValidPassportNo(str5))
 
# This code is contributed by AnkitRai01


C++
// C++ program to validate the
// passport number
// using Regular Expression
#include 
#include 
using namespace std;
 
// Function to validate the passport number
bool isValidPassportNo(string str)
{
 
    // Regex to check valid passport number
    const regex pattern(
        "^[A-PR-WYa-pr-wy][1-9]"
         "\\d\\s?\\d{4}[1-9]$");
 
    // If the passport number
    // is empty return false
    if (str.empty()) {
        return false;
    }
 
    // Return true if the passport number
    // matched the ReGex
    if (regex_match(str, pattern)) {
        return true;
    }
    else {
        return false;
    }
}
 
// Driver Code
int main()
{
    // Test Case 1:
    string str1 = "A21 90457";
    cout << isValidPassportNo(str1) << endl;
 
    // Test Case 2:
    string str2 = "A0296457";
    cout << isValidPassportNo(str2) << endl;
 
    // Test Case 3:
    string str3 = "Q2096453";
    cout << isValidPassportNo(str3) << endl;
 
    // Test Case 4:
    string str4 = "12096457";
    cout << isValidPassportNo(str4) << endl;
 
    // Test Case 5:
    string str5 = "A209645704";
    cout << isValidPassportNo(str5) << endl;
 
    return 0;
}
 
// This code is contributed by yuvraj_chandra


输出
true
false
false
false
false