标签:子序列 返回 stat one tail 做了 inpu str []
Pre:最近做了头条的在线笔试,对Scanner输入的处理有些特殊,当时是一脸懵逼态,遂由此随笔(/@_@\),java小白,有错难免!
查了下Scanner的源码,没有头绪,但是其中用到了正则的知识,遂简单回顾下正则的使用:
1、正则表达式主要是针对字符串的一种规则(以字符串表示);主要功能有以下:
2、java实例:
public class Test { public static void main(String[] args) { String reg="abc"; String str="abcdefabcdefababc"; Pattern p=Pattern.compile(reg); Matcher m=p.matcher(str); while(m.find()){ System.out.println(m.group()+"起始于:"+m.start()+",结束于:"+(m.end()-1)); } } } abc起始于:0,结束于:2 abc起始于:6,结束于:8 abc起始于:14,结束于:16
https://blog.csdn.net/FFFLLLLLL/article/details/51615204
https://blog.csdn.net/qq_24877569/article/details/52507391
标签:子序列 返回 stat one tail 做了 inpu str []
原文地址:https://www.cnblogs.com/whtblog/p/9029208.html