JAVA正则表达式

System.out.println(“wxj”.matches(“wxj”));
System.out.println("********");
String[] array = “w x j”.split("\\s");
for (String item : array) {
System.out.println(item);
}
输出:
在这里插入图片描述

这里的\s匹配任何空白字符,包括空格、制表符、换页符。
更多的元字符见下图:
在这里插入图片描述

在这里插入图片描述
上面2个图参考自:http://www.vogella.com/tutorials/JavaRegularExpressions/article.html

System.out.println(“w x j”.replaceFirst("\\s", “-”));
System.out.println("----------");

        System.out.println("w x j".replaceAll("\\s", "-"));

输出:
在这里插入图片描述

看一下正则表达式的用法套路:

import java.util.regex.Pattern;
import java.util.regex.Matcher;


public class TestRegexFindText {

	public static void main(String[] args) {
		 // Input String for matching the regex pattern
	      String inputStr = "This is an apple. These are 33 (thirty-three) apples.";
	      // Regex to be matched
	      String regexStr = "Th";

	      // Step 1: Compile a regex via static method Pattern.compile(), default is case-sensitive
	      Pattern pattern = Pattern.compile(regexStr);
	      // Pattern.compile(regex, Pattern.CASE_INSENSITIVE);  // for case-insensitive matching

	      // Step 2: Allocate a matching engine from the compiled regex pattern,
	      //         and bind to the input string
	      Matcher matcher = pattern.matcher(inputStr);

	      // Step 3: Perform matching and process the matching results

	      // Try Matcher.find(), which finds the next match
	      while (matcher.find()) {
	         System.out.println("find() found substring \"" + matcher.group()
	               + "\" starting at index " + matcher.start()
	               + " and ending at index " + matcher.end());
	      }

	      // Try Matcher.matches(), which tries to match the entrie input string
	      if (matcher.matches()) {
	         System.out.println("matches() found substring \"" + matcher.group()
	               + "\" starting at index " + matcher.start()
	               + " and ending at index " + matcher.end());
	      } else {
	         System.out.println("matches() found nothing");
	      }

	      // Try Matcher.lookingAt(), which tries to match from the beginning of the input string
	      if (matcher.lookingAt()) {
	         System.out.println("lookingAt() found substring \"" + matcher.group()
	               + "\" starting at index " + matcher.start()
	               + " and ending at index " + matcher.end());
	      } else {
	         System.out.println("lookingAt() found nothing");
	      }

	}

}

输出:
find() found substring “Th” starting at index 0 and ending at index 2
find() found substring “Th” starting at index 18 and ending at index 20
matches() found nothing
lookingAt() found substring “Th” starting at index 0 and ending at index 2

如果把 String inputStr = “This is an apple. These are 33 (thirty-three) apples.”;

说明:
How It Works
Three steps are required to perform regex matching:
Allocate a Pattern object. There is no constructor for the Pattern class. Instead, you invoke the static method Pattern.compile(regexStr) to compile the regexStr, which returns a Pattern instance.

Allocate a Matcher object (an matching engine). Again, there is no constructor for the Matcher class. Instead, you invoke the matcher(inputStr) method from the Pattern instance (created in Step 1), and bind the input string to this Matcher.
Use the Matcher instance (created in Step 2) to perform the matching and process the matching result. The Matcher class provides a few boolean methods for performing the matches:

boolean find(): scans the input sequence to look for the next subsequence that matches the pattern. If match is found, you can use the group(), start() and end() to retrieve the matched subsequence and its starting and ending indices, as shown in the above example.

boolean matches(): try to match the entire input sequence against the regex pattern. It returns true if the entire input sequence matches the pattern. That is, include regex’s begin and end position anchors ^ and $ to the pattern.
注意matches() 是匹配整个输入。

比如:
Pattern p = Pattern.compile(".s");//. represents single character
Matcher m = p.matcher(“as”);
boolean b = m.matches();
System.out.println("b is "+b);

输出b is true
但,如果改成这样: Matcher m = p.matcher(“asx”);
就是false 了。

再比如:
System.out.println(Pattern.matches(".s", “as”));//true (2nd char is s)
System.out.println(Pattern.matches(".s", “mk”));//false (2nd char is not s)
System.out.println(Pattern.matches(".s", “mst”));//false (has more than 2 char)
System.out.println(Pattern.matches(".s", “amms”));//false (has more than 2 char)
System.out.println(Pattern.matches("…s", “mas”));//true (3rd char is s)

boolean lookingAt(): try to match the input sequence, starting from the beginning, against the regex pattern. It returns true if a prefix of the input sequence matches the pattern. That is, include regex’s begin position anchors ^ to the pattern.

To perform case-insensitive matching, use Pattern.compile(regexStr, Pattern.CASE_INSENSITIVE) to create the Pattern instance (as commented out in the above example).

参考:https://docs.oracle.com/javase/7/docs/api/java/util/regex/Matcher.html

在这里插入图片描述
上图参考:https://docs.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值