Java在字符串中查找匹配的子字符串

Java在字符串中查找匹配的子字符串Java在字符串中查找匹配的子字符串

大家好,又见面了,我是你们的朋友全栈君。

示例:
       在源字符串“You may be out of my sight, but never out of my mind.”中查找“my”的个数。输出:匹配个数为2

三种方法:
       1.通过String的indexOf方法
       2. 通过正则表达式
       3. 通过String的split方法
其中第一种方法只能用于精确匹配,第二三种则可以模糊匹配(方法3的参数为正则表达式)。例如:若将child改为“.my.”,第一种方法失效。

方法1:通过String的indexOf方法

public int indexOf(int ch, int fromIndex) :返回在此字符串中第一次出现指定字符处的索引,从指定的索引开始搜索。如果不存在则返回 -1。

//方法1、通过String的indexOf(String str, int fromIndex)方法
	private void matchStringByIndexOf( String parent,String child )
	{ 
   
		int count = 0;
		int index = 0;
		while( ( index = parent.indexOf(child, index) ) != -1 )
		{ 
   
			index = index+child.length();
			count++;
		}
		System.out.println( "匹配个数为"+count );							  //结果输出
	}

方法2:通过正则表达式

类 Pattern :正则表达式的编译表示形式。
       指定为字符串的正则表达式必须首先被编译为此类的实例。然后,可将得到的模式用于创建 Matcher 对象,依照正则表达式,该对象可以与任意字符序列匹配。执行匹配所涉及的所有状态都驻留在匹配器中,所以多个匹配器可以共享同一模式。
       因此,典型的调用顺序是
       Pattern p = Pattern.compile(“a*b”);
       Matcher m = p.matcher(“aaaaab”);
       boolean b = m.matches();

  • 类 Matcher:通过调用模式的 matcher 方法从模式创建匹配器。创建匹配器后,可以使用它执行三种不同的匹配操作:
           matches 方法尝试将整个输入序列与该模式匹配。
           lookingAt 尝试将输入序列从头开始与该模式匹配。
           find 方法扫描输入序列以查找与该模式匹配的下一个子序列
//方法2、通过正则表达式
	private void matchStringByRegularExpression( String parent,String child )
	{ 
   
		
		int count = 0;
		Pattern p = Pattern.compile( child );
		Matcher m = p.matcher(parent);
		while( m.find() )
		{ 
   
			count++;
			System.out.println( "匹配项" + count+":" + m.group() ); //group方法返回由以前匹配操作所匹配的输入子序列。
		}
		System.out.println( "匹配个数为"+count );							  //结果输出
	}

方法3:通过String的split方法

public String[] split(String regex):根据给定正则表达式的匹配拆分此字符串。 该方法的作用就像是使用给定的表达式和限制参数 0 来调用两参数 split 方法。因此,所得数组中不包括结尾空字符串。

//方法3、通过split方法
	private void matchStringBySplit( String parent,String child )
	{ 
   
		String[] array = parent.split(child);
		System.out.println( "匹配个数为" + (array.length-1) );
	}

完整代码:

import java.util.Arrays;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

/** * 在字符串中查找匹配的子字符串 * author:大能豆 QQ:1023507448 * case : * 源字符串:You may be out of my sight, but never out of my mind. * 要查找的子字符串:my * 输出:匹配个数为2 */
public class MatchString { 
   

    //方法1、通过String的indexOf(String str, int fromIndex)方法
    private void matchStringByIndexOf(String parent, String child) { 
   
        int count = 0;
        int index = 0;
        while ((index = parent.indexOf(child, index)) != -1) { 
   
            index = index + child.length();
            count++;
        }
        System.out.println("匹配个数为" + count);//结果输出
    }

    //方法2、通过正则表达式
    private void matchStringByRegularExpression(String parent, String child) { 
   
        int count = 0;
        Pattern p = Pattern.compile(child);
        Matcher m = p.matcher(parent);
        while (m.find()) { 
   
            count++;
            System.out.println("匹配项" + count + ":" + m.group()); //group方法返回由以前匹配操作所匹配的输入子序列。
        }
        System.out.println("匹配个数为" + count); //结果输出
    }

    //方法3、通过split方法,但此方法需考虑子字符串是否是在末尾,若在末尾则不需要-1
    private void matchStringBySplit(String parent, String child) { 
   
        String[] array = parent.split(child);
        System.out.println("匹配个数为" + (array.length - 1));
    }

    public static void main(String[] args) { 
   
        MatchString ms = new MatchString();
        String parent = "You may be out of my sight, but never out of my mind.";
        String child = "my";

        System.out.println("------通过indexOf-------");
        ms.matchStringByIndexOf(parent, child);  //调用方法1

        System.out.println("------通过正则表达式-------");
        ms.matchStringByRegularExpression(parent, child);  //调用方法2

        System.out.println("------通过split方法-------");
        ms.matchStringBySplit(parent, child);  //调用方法3

        String test = "abcdbdasda";
        String[] as = test.split("a");
        System.out.println(Arrays.toString(as));
    }

}

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/160127.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • 读还是不读:that is the question

    点击上方☝,轻松关注!及时获取有趣有料的技术文章一个人只拥有此生此世是不够的,他还应该拥有诗意的世界。——王小波读书日今天是2020年的世界读书日,时间过的就是那么的快,不感概都不行!想…

  • iphone一键转移_苹果手机如何一键转移数据 转移教程介绍

    iphone一键转移_苹果手机如何一键转移数据 转移教程介绍众所周知,要更换手机的话,旧手机上的数据怎么办还真的是一个难题啊,毕竟手机用久了,上面的有各种重要的数据不是。那苹果手机换机的话,将数据进行转移,可以分成两种情况,一种吧,就是苹果转苹果,一种就是苹果转安卓了。苹果手机数据转移到新iPhone1、借助iCloud云备份手机自带的云备份功能,肯定是可以用上的。①手机连接上WiFi,然后在手机“设置”中,依次点击“AppleID——iCloud——i…

  • 递归算法浅谈

    递归算法浅谈

  • 玩守望先锋显示渲染器丢失_win10守望先锋渲染内存不足

    玩守望先锋显示渲染器丢失_win10守望先锋渲染内存不足解决游玩守望先锋时出现"渲染设备已丢失"笔者配置:cpu:amd3600显卡:rtx2060出现问题:在打守望先锋的时候出现"渲染设备丢失。。。。&quot

  • 基于stm32四轮小车简易PID控制

    基于stm32四轮小车简易PID控制看前需知:作者本人使用的是四个普通的TT电机加编码器+增量式PID,适合PID初学者,但是需要对PID和增量式PID有一定的认知,本篇未有详细介绍,以代码应用为主,大佬勿喷。文章目录一、粗谈PID?二、使用的硬件设备三、软件设计四、关键代码1.TIM1定时器:2.TIM2编码器模式示例:3.电机初始化:4.TIM8PWM输出:5.PID:6.中断服务函数:总结*云中何曾落羽,踏遍三岛寻声*一、粗谈PID?PID在生活中很常见,举个例子。例如生活中,一个加热器需要对某个物体进行恒温控制,但是由于某

  • 【CenterNet】模型文件resnet101-5d3b4d8f.pth下载[通俗易懂]

    【CenterNet】模型文件resnet101-5d3b4d8f.pth下载[通俗易懂]常用到的模型和预训练参数:ctdet_coco_hg.pthctdet_coco_dla_2x.pthctdet_coco_resdcn101.pthctdet_coco_resdcn18.pthmulti_pose_dla_3x.pthdla34-ba72cf86.pthresnet101-5d3b4d8f.pthresnet18-5c106cde.pth点击模型tr6e…

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号