📌  相关文章
📜  如何使用正则表达式验证SSN(社会安全号码)

📅  最后修改于: 2021-04-24 18:44:43             🧑  作者: Mango

给定字符串str ,任务是使用正则表达式检查给定的字符串是否为有效的SSN(社会安全号码)
有效的SSN(社会安全号码)必须满足以下条件:

  1. 它应该有9位数字。
  2. 它应由连字符(-)分为3部分。
  3. 第一部分应为3位数字,并且不能为000、666或900至999之间的数字。
  4. 第二部分应该有2位数字,并且应该是01到99。
  5. 第三部分应为4位数字,且应为0001至9999。

例子:

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

  • 获取字符串。
  • 创建一个正则表达式以检查有效的SSN(社会安全号码),如下所述:
regex = "^(?!666|000|9\\d{2})\\d{3}-(?!00)\\d{2}-(?!0{4})\\d{4}$";
  • 在哪里:
    • ^表示字符串的开头。
    • (?!666 | 000 | 9 \\ d {2})\\ d {3}表示前3位数字不应以000、666或900至999之间开头。
    • 表示字符串,后跟连字符(-)。
    • (?!00)\\ d {2}表示接下来的2位数字不应以00开头,并且应为01-99之间的任何数字。
    • 表示字符串,后跟连字符(-)。
    • (?!0 {4})\\ d {4}表示接下来的4位数字不能为0000,并且应为0001-9999之间的任何数字。
    • $表示字符串的结尾。
  • 将给定的字符串与正则表达式匹配。在Java,这可以通过使用Pattern.matcher()来完成。
  • 如果字符串与给定的正则表达式匹配,则返回true;否则返回false。

下面是上述方法的实现:

Java
// Java program to check valid
// SSN (Social Security Number) using
// regex.
import java.util.regex.*;
class GFG {
 
    // Function to validate
    // SSN (Social Security Number).
    public static boolean isValidSSN(String str)
    {
        // Regex to check SSN
        // (Social Security Number).
        String regex = "^(?!666|000|9\\d{2})\\d{3}"
                       + "-(?!00)\\d{2}-"
                       +"(?!0{4})\\d{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 = "856-45-6789";
        ;
        System.out.println(isValidSSN(str1));
 
        // Test Case 2:
        String str2 = "000-45-6789";
        ;
        System.out.println(isValidSSN(str2));
 
        // Test Case 3:
        String str3 = "856-452-6789";
        System.out.println(isValidSSN(str3));
 
        // Test Case 4:
        String str4 = "856-45-0000";
        System.out.println(isValidSSN(str4));
    }
}


Python3
# Python3 program to validate
# SSN (Social Security Number)
# using regular expression
import re
 
# Function to validate SSN
# (Social Security Number).
 
 
def isValidSSN(str):
 
    # Regex to check valid
    # SSN (Social Security Number).
    regex = "^(?!666|000|9\\d{2})\\d{3}-(?!00)\\d{2}-(?!0{4})\\d{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 = "856-45-6789"
print(isValidSSN(str1))
 
# Test Case 2:
str2 = "000-45-6789"
print(isValidSSN(str2))
 
# Test Case 3:
str3 = "856-452-6789"
print(isValidSSN(str3))
 
# Test Case 4:
str4 = "856-45-0000"
print(isValidSSN(str4))
 
# This code is contributed by avanitrachhadiya2155


C++
// C++ program to validate the
// SSN (Social Security Number)
// using Regular Expression
#include 
#include 
using namespace std;
 
// Function to validate the SSN
// (Social Security Number)
bool isValidSSN(string str)
{
 
    // Regex to check valid SSN
    // (Social Security Number)
    const regex pattern("^(?!666|000|9\\d{2})"
                        "\\d{3}-(?!00)"
                        "\\d{2}-(?!0{4})\\d{4}$");
 
    // If the SSN (Social Security Number)
    // is empty return false
    if (str.empty())
    {
        return false;
    }
 
    // Return true if the SSN
    // (Social Security Number)
    // matched the ReGex
    if (regex_match(str, pattern))
    {
        return true;
    }
    else {
        return false;
    }
}
 
// Driver Code
int main()
{
    // Test Case 1:
    string str1 = "856-45-6789";
    cout << isValidSSN(str1) << endl;
 
    // Test Case 2:
    string str2 = "000-45-6789";
    cout << isValidSSN(str2) << endl;
 
    // Test Case 3:
    string str3 = "856-452-6789";
    cout << isValidSSN(str3) << endl;
 
    // Test Case 4:
    string str4 = "856-45-0000";
    cout << isValidSSN(str4) << endl;
 
    return 0;
}
 
// This code is contributed by yuvraj_chandra


输出
true
false
false
false