`

正则表达式

阅读更多
import java.util.regex.Matcher;
import java.util.regex.Pattern;

/**
 * 
 */

/**
 * @author __LcukyStar
 * 正则表达式
 */
public class Test {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		// 一个点代表一个字符。
		print("abc".matches("...")); // true
		// \d代表数字,*代表0个或多个。
		print("123".matches("\\d*")); // true
		// [a,z]代表在字符a~z之中的一个,+表示一个或多个
		print("abc".matches("[a-z]+")); // true
		// ?表示0个或1个
		print("a".matches("[a-z]?")); // true
		// [a-z[A-Z]]表示所有英文字母,并集的意思了。
		print("abcD".matches("[a-z[A-Z]]*")); // true
		
		//////////////////////////////////////////////////////
		//[a-z][a-b]API说是并集,怎么感觉不对。应该是交集吧
		print("abc".matches("[a-z][a-b]*"));// false
		print("abc".matches("[a-z][a-d]*")); // true
		/////////////////////////////////////////////////////
		
		// {m,n}表示前面的字符出现m到n次,即>=m && <=n
		print("abc".matches("[a-c]{1,3}")); // true
		// {m}表示前面的字符出现m次
		print("abc".matches("[a-d]{3}")); // true
		// {m,}表示前面的字符出现的次数>=m
		print("abc".matches("[a-d]{2,}")); // true
		// 或,a,b或c,d之一
		print("abcd".matches("[[a-b]|[c-d]]*")); // true
		// a-d并且a-c出现一次或多次
		print("abc".matches("[[a-d]&&[a-c]]+")); // true
		// a-c的字符出现3次,D-F的字符出现3次,g,h,i字符之一出现3次,后跟一个数字
		print("abcDEFghi0".matches("[a-c]{3}[D-F]{3}[g,h,i]{3}\\d")); // true
		// \D:非数字,等同于[^0-9]
		print("abd~!@#$%^^&".matches("\\D*")); // true
		// ^在[]表示,除了xx,如下面就是除了d之外
		print("abc".matches("[^d]+")); // true
		// 除了c-f之外的字符0个或多个。
		print("abc".matches("[^c-f]*")); // false
		// 以a开头,后跟0到多个字符并且以c结尾
		print("abc".matches("^a[a-z]*c{1}quot;)); // true
		// \s:空白字符[ \t\n\x0B\f\r]
		print(" \n\r\t\f".matches("\\s+")); // true
		// 非空白在字符
		print("abcEDF123!@#~".matches("\\S*")); // true
		// \w:单词字符:[a-zA-Z_0-9]
		print("abc_DEF_0_23445".matches("\\w+")); // true
		// \W:非单词字符:[^\w]
		print("~!@#@%@#%@#%".matches("\\W+")); // true
		print("hello world".matches("z{0}"));
		print("------------------华丽分割线-----------------");
		print("hello 168".matches(".*\\b.*")); // true
		print("hello 168".matches(".*.*")); // true
		print("hello168".matches(".*\\b.*")); // true
		print("------------------华丽分割线-----------------");
		print("aaa@qq.com".matches("\\w[.-]+\\.\\w[.-]+"));
		print("------------------华丽分割线-----------------");
		
		Pattern p = Pattern.compile("\\d{2,3}");
		String str = "12-234-5678";
		Matcher m = p.matcher(str);
		// matches()方法匹配整个字符串
		print(m.matches()); // 是否匹配给定的正则表达式
		//m.reset(); // matches()方法在12-时就返回,因为它匹配的是整个字符串,但是下次会从这个位置开始,因此用reset()方法将其重置。
		print("------------------华丽分割线-----------------");
		print(m.find()); // true,找到234
		print(m.find()); // true,找到567
		print(m.find()); // false
		print(m.find()); // false
		print(m.find()); // false
		print("------------------华丽分割线-----------------");
		// 从开始位置找,找到了就返回true
		print(m.lookingAt()); // true
		print(m.lookingAt()); // true
		print(m.lookingAt()); // true
		print(m.lookingAt()); // true

	}
	public static void print(Object obj) {
		System.out.println(obj);
	}
}

 

分享到:
评论

相关推荐

    qt使用正则表达式限制lineEdit的输入,对正则表达式进行了封装,可以直接引入,工程编译正常

    在Qt框架中,正则表达式(Regular Expression)是一种强大的文本处理工具,它允许程序员以结构化的方式匹配、查找、替换或验证字符串。本项目针对Qt的lineEdit组件,通过正则表达式实现了输入限制功能,使得lineEdit...

    正则表达式转换工具

    正则表达式(Regular Expression,简称regex)是一种强大的文本处理工具,它用于匹配、查找、替换等操作,涉及字符串处理的各个领域。正则表达式转换工具是专门针对这一需求而设计的,它能帮助用户将输入的内容转换...

    PB实现的正则表达式

    在IT领域,正则表达式(Regular Expression,简称regex)是一种强大的文本处理工具,它能够进行复杂的模式匹配、查找、替换等操作。在本话题中,我们将探讨如何使用PowerBuilder 11.5这一经典的开发环境来实现正则...

    C语言正则表达式库

    C语言正则表达式库是用于在C编程环境中处理和匹配正则表达式的软件库。这个库名为PCRE(Perl Compatible Regular Expressions),正如其名,它与Perl语言中的正则表达式语法高度兼容,提供了丰富的功能和强大的匹配...

    易语言正则表达式文本替换

    例如,"子程序_正则文本替换"可能就是一个易语言中用于执行正则表达式替换的子程序,它接收输入的文本、正则表达式模式和替换字符串,然后返回经过替换操作的新文本。 1. **正则表达式基础** - **元字符**:如`.`...

    pb 使用正则表达式源码pbregexp

    标题中的“pb 使用正则表达式源码pbregexp”指的是在PowerBuilder(简称pb)环境中,利用名为“pbregexp”的正则表达式组件来实现源代码级别的正则表达式操作。PowerBuilder是一款流行的可视化的、面向对象的软件...

Global site tag (gtag.js) - Google Analytics