`

Java regex

    博客分类:
  • Java
 
阅读更多

(a(b)*)   匹配规则见下文红色描述 

(a(b*))   直接匹配bbb最长的



Capturing Text in a Group in a Regular Expression

group is a pair of parentheses used to group subpatterns. For example, h(a|i)t matches hat or hit. A group also captures the matching text within the parentheses. For example,
input:   abbc
pattern: a(b*)c
causes the substring bb to be captured by the group (b*). A pattern can have more than one group and the groups can be nested. For example,
pattern: (a(b*))+(c*)
contains three groups:
group 1: (a(b*))
group 2: (b*)
group 3: (c*)
The groups are numbered from left to right, outside to inside. There is an implicit group 0, which contains the entire match. Here is an example of what is captured in groups. Notice that group 1 was applied twice, once to the input abband then to the input ab. Only the most recent match is captured. Note that when using * on a group and the group matches zero times, the group will not be cleared. In particular, it will hold the most recently captured text. For example,
input:   aba
pattern: (a(b)*)+
group 0: aba
group 1: a
group 2: b
Group 1 first matched ab capturing b in group 2. Group 1 then matched the a with group 2 matching zero bs, therefore leaving intact the previously captured b.

Note: If it is not necessary for a group to capture text, you should use a non-capturing group since it is more efficient. For more information, see Using a Non-Capturing Group in a Regular Expression.

This example demonstrates how to retrieve the text in a group.

CharSequence inputStr = "abbabcd";
String patternStr = "(a(b*))+(c*)";

// Compile and use regular expression
Pattern pattern = Pattern.compile(patternStr);
Matcher matcher = pattern.matcher(inputStr);
boolean matchFound = matcher.find();

if (matchFound) {
    // Get all groups for this match
    for (int i=0; i<=matcher.groupCount(); i++) {
        String groupStr = matcher.group(i);
    }
}

 

分享到:
评论

相关推荐

    java 正则表达式 Java Regex.rar

    在Java中,正则表达式(Regex)是通过Pattern类和Matcher类来实现的,这两个类位于java.util.regex包中。下面我们将深入探讨Java正则表达式的基本概念、语法、常见使用方法以及如何在实际开发中应用。 1. **基本...

    javaregex.chm

    `javaregex.chm`这个压缩包文件很可能包含了一份关于Java中正则表达式的详细教程或参考手册,旨在帮助开发者深入理解和高效使用这一功能。 Java中的正则表达式支持是通过`java.util.regex`包提供的,主要包括`...

    Java.Regex.Crash.Course.B015YXJCMY.epub

    Chapter 3: Java Regex Classes Chapter 4: Regex for Username Chapter 5: Regex for Password Chapter 6: Regex for Email Chapter 7: Regex Color Coding Chapter 8: Regex for Image Files Chapter 9: Regex for...

    java regex例子

    Java正则表达式(Regex)是Java编程语言中用于处理字符串的强大工具,它允许程序员根据预定义的模式匹配、查找、替换或者分析文本。在Java中,正则表达式主要通过`java.util.regex`包来实现。下面我们将深入探讨Java...

    Java Regex To Use

    NULL 博文链接:https://log-cd.iteye.com/blog/199661

    article-regex-primer.rar_The Few

    Java Regex Primer Since version 1.4, Java has had support for Regular Expressions in the core API. Java Regex follows the same basic principles used in other languages, just withdi erent access ...

    Regex测试工具

    - Java中的`java.util.regex`包提供了`Pattern`和`Matcher`类来处理正则表达式。 - `Pattern.compile(regex)`编译正则表达式为模式对象。 - `Matcher matcher = pattern.matcher(input)`创建一个`Matcher`实例,...

    java超时代码处理:以正则表达式设置超时时间为例

    java超时取消正则表达式匹配方法,代码超时处理,设置代码执行时间,超棒的工具类 lambda,Callable,ExecutorService,超过执行5秒退出

    java 正则表达式应用jar包 regex-smart.jar

    在Java中,正则表达式是通过java.util.regex包提供的接口和类来实现的。`regex-smart.jar`这个库显然是为了简化开发者在Java项目中使用正则表达式的流程,它提供了一系列内置的验证、提取和清洗方法,使得处理字符串...

    JS cookie Java cookie regex 整理结果

    JavaScript(JS)Cookie和Java Cookie是Web开发中用于存储客户端数据的两种常见方式,而正则表达式(Regex)在处理字符串和数据匹配时扮演着重要角色。下面将详细阐述这三个知识点及其应用。 首先,JavaScript ...

    codeGenerationCompared:Java regex Groovy ANTLR 代码生成对比

    本篇文章将重点对比Java中的正则表达式(Regex)、Groovy语言以及ANTLR这三种不同的代码生成方法。它们各自有独特的应用场景和优势,下面我们将逐一探讨。 首先,Java的正则表达式(Regex)是编程中广泛使用的文本...

    JAVA—正则表达式.docx

    ### JAVA正则表达式知识点详解 #### 一、正则表达式基础概念 正则表达式(Regular Expression)是一种强大的文本处理工具,在Java编程中广泛应用于字符串搜索与替换、格式验证等方面。它允许用户通过一系列简短的...

    Java正则表达式教程

    在Java中,正则表达式是通过`java.util.regex`包提供的API来实现的。 ### 正则表达式基础 1. **模式匹配**:正则表达式由一系列字符和特殊符号组成,用于定义一个字符串模式。例如,`^hello`匹配以"hello"开头的...

    暑假培训学习笔记之 java正则表达式

    在Java中,正则表达式(Regular Expression)通过java.util.regex包来支持,提供了Pattern、Matcher和Pattern类等核心类来实现。下面将详细探讨Java中正则表达式的使用方法、语法以及常见应用。 1. **正则表达式...

    re2j:Java中的线性时间正则表达式匹配

    Java的标准正则表达式包java.util.regex和许多其他广泛使用的正则表达式包(例如PCRE,Perl和Python)使用回溯实现策略:当模式提供两个替代方案(例如a|b ,引擎将尝试匹配子模式a第一,如果该收益率不匹配,这将...

    core-java.rar

    具体可以参考我的文章 &lt;&lt;Java 正则表达式的使用指南&gt;&gt; ,文章中对Java常见的一些正则...In this article, we will discuss the Java Regex API and how regular expressions can be used in Java programming language.

    Java正则表达式介绍及实例

    - **匹配器(Matcher)**:Java中的`java.util.regex.Matcher`类,用于对输入字符串进行模式匹配。 - **编译器(Pattern.compile())**:使用`Pattern`类的静态方法`compile()`编译正则表达式为模式对象。 2. **...

    Java rexexp Pattern

    在Java中,正则表达式的操作主要依赖于`java.util.regex`包,其中`Pattern`类是核心,它代表了一个正则表达式模式。`Pattern`类提供了编译正则表达式并生成匹配器的方法,而`Matcher`类则是用于执行实际的匹配和操作...

    Java正则表达式实现在文本中匹配查找换行符的方法【经典实例】

    import java.util.regex.Pattern; public class NLMatch { public static void main(String[] args) { String input = "I dream of engines\nmore engines, all day long"; System.out.println("INPUT:" + input...

Global site tag (gtag.js) - Google Analytics