`
haohappy2
  • 浏览: 326394 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

Regex Example

 
阅读更多

"^The":表示所有以"The"开始的字符串("There","The cat"等);
"of despair$":表示所以以"of despair"结尾的字符串;
"^abc$":表示开始和结尾都是"abc"的字符串——呵呵,只有"abc"自己了;
"notice":表示任何包含"notice"的字符串。

'*','+'和'?'这三个符号,表示一个或一序列字符重复出现的次数。它们分别表示“没有或
更多”,“一次或更多”还有“没有或一次”。下面是几个例子:

"ab*":表示一个字符串有一个a后面跟着零个或若干个b。("a", "ab", "abbb",……);
"ab+":表示一个字符串有一个a后面跟着至少一个b或者更多;
"ab?":表示一个字符串有一个a后面跟着零个或者一个b;
"a?b+$":表示在字符串的末尾有零个或一个a跟着一个或几个b。

也可以使用范围,用大括号括起,用以表示重复次数的范围。

"ab{2}":表示一个字符串有一个a跟着2个b("abb");
"ab{2,}":表示一个字符串有一个a跟着至少2个b;
"ab{3,5}":表示一个字符串有一个a跟着3到5个b。

请注意,你必须指定范围的下限(如:"{0,2}"而不是"{,2}")。还有,你可能注意到了,'*','+'和
'?'相当于"{0,}","{1,}"和"{0,1}"。
还有一个'¦',表示“或”操作:

"hi¦hello":表示一个字符串里有"hi"或者"hello";
"(b¦cd)ef":表示"bef"或"cdef";
"(a¦b)*c":表示一串"a""b"混合的字符串后面跟一个"c";

'.'可以替代任何字符:

"a.[0-9]":表示一个字符串有一个"a"后面跟着一个任意字符和一个数字;
"^.{3}$":表示有任意三个字符的字符串(长度为3个字符);

方括号表示某些字符允许在一个字符串中的某一特定位置出现:

"[ab]":表示一个字符串有一个"a"或"b"(相当于"a¦b");
"[a-d]":表示一个字符串包含小写的'a'到'd'中的一个(相当于"a¦b¦c¦d"或者"[abcd]");
"^[a-zA-Z]":表示一个以字母开头的字符串;
"[0-9]%":表示一个百分号前有一位的数字;
",[a-zA-Z0-9]$":表示一个字符串以一个逗号后面跟着一个字母或数字结束。

你也可以在方括号里用'^'表示不希望出现的字符,'^'应在方括号里的第一位。(如:"%[^a-zA-Z]%"表
示两个百分号中不应该出现字母)。

为了逐字表达,必须在"^.$()¦*+?{\"这些字符前加上转移字符'\'。

请注意在方括号中,不需要转义字符。

分享到:
评论

相关推荐

    regexExample

    正则表达式该项目是使用版本11.2.3生成的。开发服务器为开发服务器运行ng serve 。... 如果您更改任何源文件,该应用程序将自动重新加载。代码脚手架运行ng generate component component-name生成一个新的组件。...

    java正则表达式的概述及在JAVA中的使用方法.txt

    public class RegexExample { public static void main(String[] args) { String str = "aaabcefgABC"; String regEx = "aaafff"; Pattern p = Pattern.compile(regEx); Matcher m = p.matcher(str); boolean...

    JAVA及VB的一些正则表达式使用例子

    public class RegexExample { public static void main(String[] args) { String input = "Hello, World!"; String patternStr = "World"; Pattern pattern = Pattern.compile(patternStr); Matcher matcher = ...

    有关正则表达式的介绍

    public class RegexExample { public static void main(String[] args) { String input = "example@email.com"; String regex = "^[\\w-]+(\\.[\\w-]+)*@[\\w-]+(\\.[\\w-]+)+$"; Pattern pattern = Pattern....

    example_regex:使用正则表达式的简单示例

    public class RegexExample { public static void main(String[] args) { String emailRegex = "^[\\w-]+(\\.[\\w-]+)*@[\\w-]+(\\.[\\w-]+)+$"; Pattern pattern = Pattern.compile(emailRegex); Matcher ...

    正则表达式及其应用.rar

    public class RegexExample { public static void main(String[] args) { String regex = "^[a-zA-Z0-9]+$"; // 正则表达式,匹配字母和数字 Pattern pattern = Pattern.compile(regex); Matcher matcher = ...

    Java正则表达式详解.pdf

    public class RegexExample { public static void main(String[] args) { String input = "Hello, World!"; String patternStr = "World"; Pattern pattern = Pattern.compile(patternStr); Matcher matcher = ...

    java-SAX解析XML、java正则表达式.

    public class RegexExample { public static boolean isValidEmail(String email) { String regex = "^[\\w-\\.]+@([\\w-]+\\.)+[\\w-]{2,4}$"; Pattern pattern = Pattern.compile(regex); Matcher matcher = ...

    正则表达式 功能比较齐全

    public class RegexExample { public static void main(String[] args) { String email = "example@example.com"; String patternStr = "^[\\w-\\.]+@([\\w-]+\\.)+[\\w-]{2,4}$"; Pattern pattern = Pattern....

    精通正则表达式(第三版)

    public class RegexExample { public static void main(String[] args) { String regex = "\\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\\.[A-Z|a-z]{2,}\\b"; Pattern pattern = Pattern.compile(regex); Matcher ...

    Java正则表达式详解.doc

    public class RegexExample { public static void main(String[] args) { String text = "Hello World! 123"; String regex = "\\bWorld\\b"; // 匹配单词"World" Pattern pattern = Pattern.compile(regex); ...

    Java正则表达式介绍及实例

    public class RegexExample { public static void main(String[] args) { String text = "Hello, Java regex example!"; String patternStr = "Java"; Pattern pattern = Pattern.compile(patternStr); ...

    java_正则表达式

    public class RegexExample { public static void main(String[] args) { String regex = "(\w+\s)\d{1,2},\s\d{4}"; Pattern pattern = Pattern.compile(regex); Matcher matcher = pattern.matcher("June 26, ...

    java 正则表达式

    public class RegexExample { public static void main(String[] args) { String input = "a123"; String regex = "^\\w+\\d*$"; Pattern pattern = Pattern.compile(regex); Matcher matcher = pattern....

    正则表达式.

    public class RegexExample { public static void main(String[] args) { String regex = "\\b[a-zA-Z]+\\b"; // 匹配单词 String testStr = "Hello World!"; Pattern pattern = Pattern.compile(regex); ...

    正则表达式

    public class RegexExample { public static void main(String[] args) { String regex = "^[a-zA-Z0-9_]{6,20}$"; // 假设这是用户名的正则表达式 Pattern pattern = Pattern.compile(regex); String username ...

    Java中如何使用正则表达式

    public class RegexExample { public static void main(String[] args) { // 创建正则表达式 String regex = "hello\\s+world"; // 匹配"hello"后跟一个或多个空格,然后是"world" // 编译正则表达式 Pattern ...

    java正则表达式实例教程

    public class RegexExample { public static void main(String[] args) { // 字符匹配示例 Pattern p = Pattern.compile("[a-z]*"); Matcher m = p.matcher("example"); boolean b = m.matches(); System.out....

    正则表达式API和实例

    public class RegexExample { public static void main(String[] args) { String input = "Hello, my phone number is 1234567890 and email is test@example.com"; Pattern pattern = Pattern.compile("\\d+"); ...

Global site tag (gtag.js) - Google Analytics