📌  相关文章
📜  如何使用正则表达式检查 Aadhar 号码是否有效

📅  最后修改于: 2021-09-04 11:40:10             🧑  作者: Mango

给定字符串str ,任务是使用正则表达式检查给定字符串是否是有效的 Aadhar 数。有效的 Aadhar 号必须满足以下条件:

  1. 它应该有 12 位数字。
  2. 它不应该以 0 和 1 开头。
  3. 它不应包含任何字母和特殊字符。
  4. 每 4 位数字后应有空格。

例子:

做法:思路是用正则表达式来解决这个问题。可以按照以下步骤计算答案:

  • 获取字符串。
  • 创建一个正则表达式来检查有效的 Aadhar 数,如下所述:
  • 在哪里:
    • ^代表字符串的开始。
    • [2-9]{1}表示第一个数字应该是 2-9 中的任何一个。
    • [0-9]{3}表示第一个数字之后的 3 个数字应该是 0-9 中的任何数字。
    • \\s代表空白。
    • [0-9]{4}表示接下来的 4 位数字应该是 0-9 之间的任何一个。
    • \\s代表空白。
    • [0-9]{4}表示接下来的 4 位数字应该是 0-9 之间的任何一个。
    • $表示字符串的结尾。
  • 将给定的字符串与正则表达式匹配。在Java,这可以通过使用 Pattern.matcher() 来完成。
  • 如果字符串与给定的正则表达式匹配,则返回 true,否则返回 false。

下面是上述方法的实现:

C++
// C++ program to validate the
// Aadhar number using Regular Expression
#include 
#include 
using namespace std;
 
// Function to validate the Aadhar number.
bool isValidAadharNumber(string str)
{
 
  // Regex to check valid Aadhar number.
  const regex pattern("^[2-9]{1}[0-9]{3}\\s[0-9]{4}\\s[0-9]{4}$");
 
  // If the Aadhar number
  // is empty return false
  if (str.empty())
  {
     return false;
  }
 
  // Return true if the Aadhar number
  // matched the ReGex
  if(regex_match(str, pattern))
  {
    return true;
  }
  else
  {
    return false;
  }
}
 
// Driver Code
int main()
{
  // Test Case 1:
  string str1 = "3675 9834 6015";
  cout << isValidAadharNumber(str1) << endl;
 
  // Test Case 2:
  string str2 = "4675 9834 6012 8";
  cout << isValidAadharNumber(str2) << endl;
 
  // Test Case 3:
  string str3 = "0175 9834 6012";
  cout << isValidAadharNumber(str3) << endl;
 
  // Test Case 4:
  string str4 = "3675 98AF 60#2";
  cout << isValidAadharNumber(str4) << endl;
 
  // Test Case 5:
  string str5 = "417598346012";
  cout << isValidAadharNumber(str5) << endl;
  return 0;
}
 
// This code is contributed by yuvraj_chandra


Java
// Java program to check valid
// Aadhar number using regex.
 
import java.util.regex.*;
class GFG {
 
    // Function to validate Aadhar number.
    public static boolean
    isValidAadharNumber(String str)
    {
        // Regex to check valid Aadhar number.
        String regex
            = "^[2-9]{1}[0-9]{3}\\s[0-9]{4}\\s[0-9]{4}$";
 
        // Compile the ReGex
        Pattern p = Pattern.compile(regex);
 
        // If the string is empty
        // return false
        if (str == null) {
            return false;
        }
 
        // Pattern class contains matcher() method
        // to find matching between given string
        // and regular expression.
        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 = "3675 9834 6015";
        System.out.println(isValidAadharNumber(str1));
 
        // Test Case 2:
        String str2 = "4675 9834 6012 8";
        System.out.println(isValidAadharNumber(str2));
 
        // Test Case 3:
        String str3 = "0175 9834 6012";
        System.out.println(isValidAadharNumber(str3));
 
        // Test Case 4:
        String str4 = "3675 98AF 60#2";
        System.out.println(isValidAadharNumber(str4));
 
        // Test Case 5:
        String str5 = "417598346012";
        System.out.println(isValidAadharNumber(str5));
    }
}


Python3
# Python3 program to validate
# Aadhar number using regex.
import re
 
# Function to validate Aadhar
# number.
def isValidAadharNumber(str):
 
    # Regex to check valid
    # Aadhar number.
    regex = ("^[2-9]{1}[0-9]{3}\\" +
             "s[0-9]{4}\\s[0-9]{4}$")
     
    # Compile the ReGex
    p = re.compile(regex)
 
    # If the string is empty
    # return false
    if (str == None):
        return False
 
    # Return if the string
    # matched the ReGex
    if(re.search(p, str)):
        return True
    else:
        return False
 
# Driver code
 
# Test Case 1:
str1 = "3675 9834 6015"
print(isValidAadharNumber(str1))
 
# Test Case 2:
str2 = "4675 9834 6012 8"
print(isValidAadharNumber(str2))
 
# Test Case 3:
str3 = "0175 9834 6012"
print(isValidAadharNumber(str3))
 
# Test Case 4:
str4 = "3675 98AF 60#2"
print(isValidAadharNumber(str4))
 
# Test Case 5:
str5 = "417598346012"
print(isValidAadharNumber(str5))
 
# This code is contributed by avanitrachhadiya2155


输出:
true
false
false
false
false

如果您想与行业专家一起参加直播课程,请参阅Geeks Classes Live