时间:2021-05-20
使用
RegexString.with(string).pattern(pattern).start() + 后续操作(matches,find或者是replace)
源码
package com;import java.util.Objects;import java.util.regex.Matcher;import java.util.regex.Pattern;/** * @author YouXianMing1987@iCloud.com 用于简化处理正则表达式 */public class RegexString { private String string; private Pattern pattern; private Matcher matcher; ////////////////////// Constructor ////////////////////// /** * 正则表达式对象 * * @param str * 初始化用的字符串 */ public RegexString(String str) { setString(Objects.requireNonNull(str)); } ////////////////////// Normal Method ////////////////////// /** * 设置正则表达式的pattern * * @param regex * 正则表达式语句 * @return RegexString */ public RegexString pattern(String regex) { setPattern(Pattern.compile(regex)); return this; } /** * 设置正则表达式的pattern * * @param regex * 正则表达式语句 * @param flags * 正则表达式flag值 * @return RegexString */ public RegexString pattern(String regex, int flags) { setPattern(Pattern.compile(regex, flags)); return this; } /** * 正则表达式对象开始匹配(设置完pattern后需要自行此语句才能做后续操作) * * @return RegexString */ public RegexString start() { setMatcher(pattern.matcher(string)); return this; } /** * 进行文本替换 * * @param replacement * 用来替换的文本 * @return 替换后的字符串 */ public String replace(String replacement) { return getMatcher().replaceAll(replacement); } /** * 判断是否匹配(一次性匹配全部文本,不分步) * * @return 匹配了返回true,没有匹配返回false. */ public boolean matches() { return getMatcher().matches(); } /** * 判断是否匹配(分步匹配文本,请结合while循环使用) * * @return 找到了返回true,没有找到返回false. */ public boolean find() { return getMatcher().find(); } /** * find()操作成功后,可以通过matchString()获取匹配的字符串 * * @return 匹配的字符串 */ public String matchString() { return getMatcher().group(); } /** * find()操作成功后,可以通过matchStart()获取匹配的起始位置 * * @return 匹配的起始位置 */ public int matchStart() { return getMatcher().start(); } /** * find()操作成功后,可以通过matchEnd()获取匹配的结束位置 * * @return 匹配的起始位置 */ public int matchEnd() { return getMatcher().end(); } ////////////////////// Static Method ////////////////////// /** * [静态方法] 便利构造器 * * @param str * 初始化用的字符串 * @return RegexString */ public static RegexString with(String str) { return new RegexString(str); } ////////////////////// Getter & Setter ////////////////////// public String getString() { return string; } public void setString(String string) { this.string = string; } public Pattern getPattern() { return pattern; } public void setPattern(Pattern pattern) { this.pattern = pattern; } public Matcher getMatcher() { return matcher; } public void setMatcher(Matcher matcher) { this.matcher = matcher; }}示例
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本教程旨在帮助你驾驭Java正则表达式,同时也帮助我复习正则表达式。什么是正则表达式?正则表达式定义了字符串的模式。正则表达式可以用来搜索、编辑或处理文本。正则
Java中正则表达式运用实例(参看java中正则表达式运用详解):测试代码packagetest;/***在String的matches()方法,split()
在上篇给大家介绍了Java中正则表达式的使用和详解(上),具体内容如下所示:1.常用正则表达式规则正则表达式语法一个或多个汉字^[\u0391-\uFFE5]+
1、正则表达式包括两部分①定义正则表达式的规则;②正则表达式的模式(i/g/m);2、声明正则表达式①字面量声明:varreg=/表达式规则/表达式模式; e
前言在re的正则表达式模块里,可以通过模块的方式来访问正则表达式,但是如果重复多次地使用正则表达式,最好是使用compile函数把正则表达式编译成对象Regex