java 获取 子字符串 在 输入的字符串 中第 count 次出现时的下标索引

	// 获得子字符串 strToFind 在字符串 inputStr 中第 count 次出现时的下标索引
	public static int getFromIndex( String inputStr, String strToFind, int count ){
		//对子字符串进行匹配
		Matcher slashMatcher = Pattern.compile( strToFind ).matcher( inputStr );

		int index = 0;
		//matcher.find();  //尝试查找与该模式匹配的输入序列的下一个子序列

		while( slashMatcher.find() ){
			index++;

			//当 strToFind 字符第 count 次出现的位置
			if( index == count ){
				break;
			}
		}

		try{
			// matcher.start(); 返回以前匹配的初始索引
			return slashMatcher.start();
		}catch ( Exception e ){
			//e.printStackTrace();

			return -1;   // 没找到
		}
	}

调用:

int re = getFromIndex( "hello [] [] world", "]", 2 );
System.out.println( re );   // 打印结果 = 10

int re = getFromIndex( "hello [] [] world", "]", 20 );
System.out.println( re );   // 打印结果 = -1

 

转自: https://blog.youkuaiyun.com/huqingpeng321/article/details/54908694

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值