java正则表达式(java正则表达式匹配字符串)
一、java正则表达式匹配字符串
你要先写好正则表达式单纯判断用String的matches()方法就可以了publicclassTest{publicstaticvoidmain(String[]args){Strings="1234";s.matches("\\d*");//\\d*为正则表达式,数字出现零次或多次,返回boolean类型}}
二、java怎么用正则表达式截取一段字符串
首先比要知道正则表达式的写法;s.slip("s")
;//用s来截取字符串片段。
s.slip("\\D")
;//通过非数字来截取字符串比如34234jdds434323kds79090dsdd皆可以将字符串竭诚三段
三、java正则表达式四种常用的处理方式(匹配、分割、替代、获取)
JAVA中正则表达式处理字符串的四个常用方法:匹配、分割、替换、截取。其跟字符串的常用函数相似,但是使用正则表达式会更简单、更加简洁。下面是具体的例子:
1publicclassTestRegex{
2
3publicstaticvoidmain(String[]args){
4Stringstr="";
5Stringregex="";
6
7//匹配
8regex="[1-9][a-z]";
9getMatches(str,regex);
10
11//分割
12str="1a:abc123:";
13regex=":";
14getSpilt(str,regex);
15
16//替换
17str="1223334444aaabbc";
18StringoldChar="(.)\1+";
19regex="$1";
20getReplace(str,oldChar,regex);
21
22//截取
23str="urlabc123";
24regex="(.*)";
25getSubstring(str,regex);
26
27}
28
29publicstaticvoidgetMatches(Stringstr,Stringregex){
30System.out.println(str.matches(regex));
31}
32
33publicstaticvoidgetSpilt(Stringstr,Stringregex){
34String[]array=str.split(regex);
35for(Stringt:array){
36System.out.println(t);
37}
38}
39
40publicstaticvoidgetReplace(Stringstr,StringoldChar,Stringregex) {
41System.out.println(str.replaceAll(oldChar,regex));
42}
43
44publicstaticvoidgetSubstring(Stringstr,Stringregex){
45Patternp=Pattern.compile(regex);
46Matcherm=p.matcher(str);
47if(m.find()){
48System.out.println(m.group(1));
49}
50}
51}