如何从包含正则表达式模式的Java字符串中提取组
如何从包含正则表达式模式的Java字符串中提取组
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class RegexTest {
public static void main(String[] args) {
Pattern pattern = Pattern.compile("fun");
Matcher matcher = pattern.matcher("Java is fun");
// using Matcher find(), group(), start() and end() methods
while (matcher.find()) {
System.out.println("Found the text \"" + matcher.group()
+ "\" 开始 " + matcher.start()
+ " 索引并以索引结尾 " + matcher.end());
}
}
}使用Java正则表达式检查字符串是否包含数字。
import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Numberornot {
public static void main(String[] args) {
String s;
System.out.println("enter string");
Scanner sc=new Scanner(System.in);
s = sc.nextLine();
System.out.println(isNumber(s));
}
public static boolean isNumber( String s ) {
Pattern p = Pattern.compile( "[0-9]" );
Matcher m = p.matcher( s );
return m.find();
}
}输出结果
enter string hello123 true
输出结果
enter string hello false
热门推荐
10 香港老妈结婚祝福语简短
11 毕业立体贺卡祝福语简短
12 简短新年年会祝福语
13 评论小品祝福语大全简短
14 恭喜师兄结婚祝福语简短
15 员工集体辞职祝福语简短
16 高中新生祝福语 简短
17 装修祝福语男生搞笑简短
18 生日开业蛋糕祝福语简短