给定一个由字母数字字符的字符串str ,任务是使用正则表达式检查给定的字符串是否是有效的护照号码。
印度的有效护照号码必须满足以下条件:
- 它应该是八个字符长。
- 第一个字符应该是大写字母。
- 接下来的两个字符应该是数字,但第一个字符应该是 1-9 之间的任何数字,第二个字符应该是 0-9 之间的任何数字。
- 它应该是零个或一个空白字符。
- 接下来的四个字符应该是 0-9 之间的任何数字。
- 最后一个字符应该是 1-9 之间的任何数字。
例子:
Input: str = “A2096457”;
Output: true
Explanation: The given string satisfies all the above mentioned conditions. Therefore it is a valid passport number of India.
Input: str = “12096457”;
Output: false
Explanation: The given string doesn’t starts with an upper case alphabet. Therefore it is not a valid passport number of India.
Input: str = “A209645704”;
Output: false
Explanation: The given string contains 10 characters. Therefore it is not a valid passport number of India.
做法:思路是用正则表达式来解决这个问题。可以按照以下步骤计算答案。
- 获取字符串。
- 创建一个正则表达式来检查印度的有效护照号码,如下所述:
regex = “^[A-PR-WYa-pr-wy][1-9]\\d\\s?\\d{4}[1-9]$”;
- 在哪里:
- ^代表字符串的开始。
- [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 中的任意数字。
- $表示字符串的结尾。
- 将给定的字符串与正则表达式匹配。在Java,这可以通过使用 Pattern.matcher() 来完成。
- 如果字符串与给定的正则表达式匹配,则返回 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
如果您想与行业专家一起参加直播课程,请参阅Geeks Classes Live