Java Pattern.find()方法具有什么功能呢?
下文笔者讲述Pattern.find()方法的功能简介说明,如下所示:
Pattern.find()方法的功能: 用于查找字符串 如:在目标字符串中查找下一个匹配子串
Pattern.find()方法的语法:
boolean find() 此方法对字符串进行匹配,匹配到的字符串可以在任何位置 boolean find(int start) 此方法重设Matcher对象,并且尝试在目标字符串里从指定的位置开始查找下一个匹配的子串例
package com.java265.other; import java.util.regex.Matcher; import java.util.regex.Pattern; public class testClass { /* * java265.com Pattern类的使用 */ public static void main(String[] args) { Pattern p = Pattern.compile("\\d+"); Matcher m = p.matcher("54fd5"); System.out.println(m.find());// 返回true Matcher m2 = p.matcher("rr5re"); System.out.println(m2.find());// 返回true Matcher m3 = p.matcher("23ee"); System.out.println(m3.find());// 返回true Matcher m4 = p.matcher("tfdd"); System.out.println(m4.find());// 返回false } } ------运行以上代码,将输出以下信息----- true true true false
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。