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

📅  最后修改于: 2021-09-05 11:50:14             🧑  作者: 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

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