gpt4 book ai didi

Java 方法检查关键字是否被 HTML 标题标签包围

转载 作者:行者123 更新时间:2023-12-01 11:45:46 25 4
gpt4 key购买 nike

我目前正在尝试编写一种方法,该方法在文本文件中检查特定单词是否由特定字符集封装。例如,如果我的关键字是“blablabla”,并且字符集是html标题标签,(例如

 <h2> blabla </h2>

),该方法应该返回 true。但是,关键字本身可以被不同的关键字包围(例如

<h2> something something blabla in the month of may </h2>

) 在这种情况下,该方法仍然必须返回 true,因为关键字仍然被定义的字符集包围。这是我已经拥有的:

    public static Boolean KeywordIsInTitle(String text, String keywordInText){
boolean isInTitle = false;
if( text.contains(keywordInText) == true){
/*Here is wehre I am stuck....
* */

isInTitle = true;}
return isInTitle;
}

我已经研究了正则表达式和模式匹配一​​个小时左右,但没有任何效果,我不得不承认我对这些概念还不太舒服和熟悉...... 有人可以帮忙吗?预先非常感谢您!

最佳答案

import java.util.regex.Pattern;

public class Match {
public static void main(String[] args) {
String s1 = "<h2> blabla </h2>";
String s2 = " <h2> some other string </h2>";
final String regex = "<h2>(.)*blabla(.)*<\\/h2>";

boolean b1 = Pattern.matches(regex, s1);
boolean b2 = Pattern.matches(regex, s2);

System.out.printf("the value of b1 is %b\n", b1);
System.out.printf("the value of b2 is %b\n", b2);
}
}

关于Java 方法检查关键字是否被 HTML 标题标签包围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29144879/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com