给定字符串str ,任务是使用正则表达式检查它是否是有效的 HTML 标签。
有效的 HTML 标签必须满足以下条件:
- 它应该以开始标记 (<) 开头。
- 它后面应该跟一个双引号字符串或单引号字符串。
- 它不应允许一个双引号字符串、一个单引号字符串或一个没有单引号或双引号括起来的结束标记 (>)。
- 它应该以结束标记 (>) 结尾。
例子:
Input: str = “’>”;
Output: true
Explanation: The given string satisfies all the above mentioned conditions.
Input: str = “
”;
Output: true
Explanation: The given string satisfies all the above mentioned conditions.
Input: str = “br/>”;
Output: false
Explanation: The given string doesn’t starts with an opening tag “<“. Therefore, it is not a valid HTML tag.
Input: str = “<‘br/>”;
Output: false
Explanation: The given string has one single quotes string that is not allowed. Therefore, it is not a valid HTML tag.
Input: str = “ >”;
Output: false
Explanation: The given string has a closing tag (>) without single or double quotes enclosed that is not allowed. Therefore, it is not a valid HTML tag.
做法:思路是用正则表达式来解决这个问题。可以按照以下步骤计算答案。
- 获取字符串。
- 创建一个正则表达式来检查有效的 HTML 标签,如下所述:
regex = “<(“[^”]*”|'[^’]*’|[^’”>])*>”;
- 在哪里:
- <表示字符串应以开始标记 (<) 开头。
- (代表组的开始。
- “[^”]*”表示字符串应该允许双引号括起来的字符串。
- |代表或。
- ‘[^’]* ‘ 表示字符串应该允许单引号括起来的字符串。
- |代表或。
- [^'”>]表示字符串不应包含单引号、双引号和“>”。
- )代表组的结束。
- *代表 0 或更多。
- >表示应该以结束标记 (>) 结尾的字符串。
- 将给定的字符串与正则表达式匹配。在Java,这可以通过使用Pattern.matcher()来完成。
- 如果字符串与给定的正则表达式匹配,则返回 true,否则返回 false。
下面是上述方法的实现:
C++
// C++ program to validate the
// HTML tag using Regular Expression
#include
#include
using namespace std;
// Function to validate the HTML tag.
bool isValidHTMLTag(string str)
{
// Regex to check valid HTML tag.
const regex pattern("<(\"[^\"]*\"|'[^']*'|[^'\">])*>");
// If the HTML tag
// is empty return false
if (str.empty())
{
return false;
}
// Return true if the HTML tag
// matched the ReGex
if(regex_match(str, pattern))
{
return true;
}
else
{
return false;
}
}
// Driver Code
int main()
{
// Test Case 1:
string str1 = "";
cout << isValidHTMLTag(str1) << endl;
// Test Case 2:
string str2 = "
";
cout << isValidHTMLTag(str2) << endl;
// Test Case 3:
string str3 = "br/>";
cout << isValidHTMLTag(str3) << endl;
// Test Case 4:
string str4 = "<'br/>";
cout << isValidHTMLTag(str4) << endl;
// Test Case 5:
string str5 = " >";
cout << isValidHTMLTag(str5) << endl;
return 0;
}
// This code is contributed by yuvraj_chandra
Java
// Java program to validate
// HTML tag using regex.
import java.util.regex.*;
class GFG {
// Function to validate
// HTML tag using regex.
public static boolean
isValidHTMLTag(String str)
{
// Regex to check valid HTML tag.
String regex
= "<(\"[^\"]*\"|'[^']*'|[^'\">])*>";
// 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 = "";
System.out.println(isValidHTMLTag(str1));
// Test Case 2:
String str2 = "
";
System.out.println(isValidHTMLTag(str2));
// Test Case 3:
String str3 = "br/>";
System.out.println(isValidHTMLTag(str3));
// Test Case 4:
String str4 = "<'br/>";
System.out.println(isValidHTMLTag(str4));
// Test Case 5:
String str5 = " >";
System.out.println(isValidHTMLTag(str5));
}
}
Python3
# Python3 program to validate
# HTML tag using regex.
# using regular expression
import re
# Function to validate
# HTML tag using regex.
def isValidHTMLTag(str):
# Regex to check valid
# HTML tag using regex.
regex = "<(\"[^\"]*\"|'[^']*'|[^'\">])*>"
# 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 = ""
print(isValidHTMLTag(str1))
# Test Case 2:
str2 = "
"
print(isValidHTMLTag(str2))
# Test Case 3:
str3 = "br/>"
print(isValidHTMLTag(str3))
# Test Case 4:
str4 = "<'br/>"
print(isValidHTMLTag(str4))
# This code is contributed by avanitrachhadiya2155
true
true
false
false
false
如果您想与行业专家一起参加直播课程,请参阅Geeks Classes Live