给定字符串str ,任务是使用正则表达式检查给定字符串是否是有效的印度驾驶执照号码。
有效的印度驾照号码必须满足以下条件:
- 它应该是 16 个字符长(包括空格或连字符 (-))。
- 驾驶执照号码可以采用以下任何一种格式输入:
HR-0619850034761
OR
HR06 19850034761
- 前两个字符应该是代表州代码的大写字母。
- 接下来的两个字符应该是代表 RTO 代码的数字。
- 接下来的四个字符应该是代表许可证颁发年份的数字。
- 接下来的七个字符应该是 0-9 之间的任何数字。
注意:在本文中,我们将检查 1900-2099 年的许可证颁发年份。可以自定义更改许可证颁发年份。
例子:
Input: str = “HR-0619850034761”;
Output: true
Explanation:
The given string satisfies all the above mentioned conditions. Therefore, it is not a valid Indian driving license number.
Input: str = “MH27 30120034761”;
Output: false
Explanation:
The given string has the license issued year 3012, that is not a valid year because in this article we validate the year from 1900-2099. Therefore, it is not a valid Indian driving license number.
Input: str = “GJ-2420180”;
Output: false
Explanation:
The given string has 10 characters. Therefore, it is not a valid Indian driving license number.
做法:思路是用正则表达式来解决这个问题。可以按照以下步骤计算答案:
- 获取字符串。
- 创建一个正则表达式来检查有效的印度驾驶执照号码,如下所述:
regex = “^(([A-Z]{2}[0-9]{2})( )|([A-Z]{2}-[0-9]{2}))((19|20)[0-9][0-9])[0-9]{7}$”;
- 在哪里:
- ^代表字符串的开始。
- (代表第 1 组的开始。
- (代表第 2 组的开始。
- [AZ]{2}表示前两个字符应该是大写字母。
- [0-9]{2}表示接下来的两个字符应该是数字。
- )代表第 2 组的结束。
- ()代表空白字符。
- |代表或。
- (代表第 3 组的开始。
- [AZ]{2}表示前两个字符应该是大写字母。
- –代表连字符。
- [0-9]{2}表示接下来的两个字符应该是数字。
- )代表第 3 组的结束。
- )代表第 1 组的结束。
- ((19|20)[0-9][0-9])表示 1900-2099 年。
- [0-9]{7}表示接下来的七个字符应该是 0-9 之间的任何数字。
- $表示字符串的结尾。
- 将给定的字符串与正则表达式匹配,在Java,这可以通过使用 Pattern.matcher() 来完成。
- 如果字符串与给定的正则表达式匹配,则返回 true,否则返回 false。
下面是上述方法的实现:
Java
// Java program to validate
// Indian driving license number
// using regular expression
import java.util.regex.*;
class GFG {
// Function to validate
// Indian driving license number
// using regular expression
public static boolean isValidLicenseNo(String str)
{
// Regex to check valid
// Indian driving license number
String regex = "^(([A-Z]{2}[0-9]{2})"
+ "( )|([A-Z]{2}-[0-9]"
+ "{2}))((19|20)[0-9]"
+ "[0-9])[0-9]{7}$";
// 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 = "HR-0619850034761";
System.out.println(isValidLicenseNo(str1));
// Test Case 2:
String str2 = "UP14 20160034761";
System.out.println(isValidLicenseNo(str2));
// Test Case 3:
String str3 = "12HR-37200602347";
System.out.println(isValidLicenseNo(str3));
// Test Case 4:
String str4 = "MH27 30123476102";
System.out.println(isValidLicenseNo(str4));
// Test Case 5:
String str5 = "GJ-2420180";
System.out.println(isValidLicenseNo(str5));
}
}
Python3
# Python program to validate
# Indian driving license number
# using regular expression
import re
# Function to validate Indian
# driving license number.
def isValidLicenseNo(str):
# Regex to check valid
# Indian driving license number
regex = ("^(([A-Z]{2}[0-9]{2})" +
"( )|([A-Z]{2}-[0-9]" +
"{2}))((19|20)[0-9]" +
"[0-9])[0-9]{7}$")
# 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 = "HR-0619850034761"
print(isValidLicenseNo(str1))
# Test Case 2:
str2 = "UP14 20160034761"
print(isValidLicenseNo(str2))
# Test Case 3:
str3 = "12HR-37200602347"
print(isValidLicenseNo(str3))
# Test Case 4:
str4 = "MH27 30123476102"
print(isValidLicenseNo(str4))
# Test Case 5:
str5 = "GJ-2420180"
print(isValidLicenseNo(str5))
# This code is contributed by avanitrachhadiya2155
C++
// C++ program to validate the
// Indian driving license number
// using Regular Expression
#include
#include
using namespace std;
// Function to validate the
// Indian driving license number
bool isValidLicenseNo(string str)
{
// Regex to check valid
// Indian driving license number
const regex pattern("^(([A-Z]{2}[0-9]{2})( "
")|([A-Z]{2}-[0-9]{2}))"
"((19|20)[0-"
"9][0-9])[0-9]{7}$");
// If the Indian driving
// license number is empty return false
if (str.empty())
{
return false;
}
// Return true if the Indian
// driving license number
// matched the ReGex
if (regex_match(str, pattern))
{
return true;
}
else {
return false;
}
}
// Driver Code
int main()
{
// Test Case 1:
string str1 = "HR-0619850034761";
cout << isValidLicenseNo(str1) << endl;
// Test Case 2:
string str2 = "UP14 20160034761";
cout << isValidLicenseNo(str2) << endl;
// Test Case 3:
string str3 = "12HR-37200602347";
cout << isValidLicenseNo(str3) << endl;
// Test Case 4:
string str4 = "MH27 30123476102";
cout << isValidLicenseNo(str4) << endl;
// Test Case 5:
string str5 = "GJ-2420180";
cout << isValidLicenseNo(str5) << endl;
return 0;
}
// This code is contributed by yuvraj_chandra
true
true
false
false
false
如果您想与行业专家一起参加直播课程,请参阅Geeks Classes Live