java正侧表达式组合(group)使用

本文探讨了Java正则表达式中命名组的使用,解释了如何通过使用`?<name>`定义命名组,并提供了示例说明如何通过Matcher.group()方法获取命名组的值,强调了命名组在提高代码可读性和简化值访问方面的重要性。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

正则表达式有很多细节及特殊情况,不同的场景需要根据实际需求进行组合使用

import java.util.regex.Matcher;
import java.util.regex.Pattern;
 
public class GroupExample {
   public static void main(String[] args) {
       String input = "John Smith is a software developer, his phonenumber is 123-456-7890";
       String pattern = "(\\w+)\\s(\\w+)\\s.*\\s.*,.*(\\d{3}-\\d{3}-\\d{4})";
 
       // Compile the pattern
       Pattern p = Pattern.compile(pattern);
 
       // Get a matcher object
       Matcher m = p.matcher(input);
 
       if (m.find()) {
           // Get the whole match
           System.out.println("Whole match: " + m.group());
           // Get the first captured group
           System.out.println("First captured group: " + m.group(1));
           // Get the second captured group
           System.out.println("Second captured 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

能量老8

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值