java删除pattern匹配的内容_如何使用Java中的Pattern类匹配字符串中的特定单词?...

本文介绍了如何在Java中使用Pattern类和正则表达式来匹配字符串中的特定单词。通过示例代码展示了如何查找并检测字边界内的单词,如'hello'和'second'。
摘要由CSDN通过智能技术生成

该\ b在Java正则表达式元字符单词边界匹配。因此从给定的输入文本找到一个特定的词指定正则表达式的字边界内所需的字作为-"\\brequired word\\b";

例子1import java.util.Scanner;

import java.util.regex.Matcher;

import java.util.regex.Pattern;

public class MachingWordExample1 {

public static void main( String args[] ) {

//读取字符串值

Scanner sc = new Scanner(System.in);

System.out.println("Enter input string");

String input = sc.next();

//查找数字的正则表达式

String regex = "\\bhello\\b";

//编译正则表达式

Pattern pattern = Pattern.compile(regex);

//检索匹配器对象

Matcher matcher = pattern.matcher(input);

if(matcher.find()) {

System.out.println("Match found");

} else {

System.out.println("Match not found");

}

}

}

输出结果Enter input string

hello welcome to Nhooo

Match found

例子2import java.util.regex.Matcher;

import java.util.regex.Pattern;

public class MatcherExample2 {

public static void main( String args[] ) {

String input = "This is sample text \n " + "This is second line " + "This is third line";

String regex = "\\bsecond\\b";

//编译正则表达式

Pattern pattern = Pattern.compile(regex);

//检索匹配器对象

Matcher matcher = pattern.matcher(input);

if(matcher.find()) {

System.out.println("Match found");

} else {

System.out.println("Match not found");

}

}

}

输出结果Match found

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值