加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

正则表达式中的逻辑运算符或(怎么用逻辑运算符或连接两个正则表

发布时间:2020-12-14 01:11:09 所属栏目:百科 来源:网络整理
导读:今天使用正则表达式是遇到一个问题,磨了半天,发现犯了个低级错误,因此记录下来加深印象 问题描述: 我需要把^drawable(-[a-zA-Z0-9]+)*$ 和 ^mipmap(-[a-zA-Z0-9]+)*$ 这两个正则表达式用或的关系连接起来 我尝试了一下方法都未成功!! Pattern.compile("^draw

今天使用正则表达式是遇到一个问题,磨了半天,发现犯了个低级错误,因此记录下来加深印象

问题描述:

我需要把^drawable(-[a-zA-Z0-9]+)*$ 和 ^mipmap(-[a-zA-Z0-9]+)*$ 这两个正则表达式用或的关系连接起来


我尝试了一下方法都未成功!!

Pattern.compile("^drawable(-[a-zA-Z0-9]+)*$ | ^mipmap(-[a-zA-Z0-9]+)*$")

Pattern.compile("(^drawable(-[a-zA-Z0-9]+)*$) | (^mipmap(-[a-zA-Z0-9]+)*$)")

Pattern.compile("^drawable(-[a-zA-Z0-9]+)* | mipmap(-[a-zA-Z0-9]+)*$")

Pattern.compile("^(drawable | mipmap)(-[a-zA-Z0-9]+)*$")


源码如下:

import java.util.regex.Pattern;  public class MyClass {
    public static Pattern VALID_FOLDER_PATTERN = Pattern.compile("^drawable(-[a-zA-Z0-9]+)*$ | ^mipmap(-[a-zA-Z0-9]+)*$"); //public static Pattern VALID_FOLDER_PATTERN = Pattern.compile("(^drawable(-[a-zA-Z0-9]+)*$) | (^mipmap(-[a-zA-Z0-9]+)*$)"); //public static Pattern VALID_FOLDER_PATTERN = Pattern.compile("^drawable(-[a-zA-Z0-9]+)* | mipmap(-[a-zA-Z0-9]+)*$"); //public static Pattern VALID_FOLDER_PATTERN = Pattern.compile("^(drawable | mipmap)(-[a-zA-Z0-9]+)*$");   public static void main(String[] args) {
         if(VALID_FOLDER_PATTERN.matcher("drawable-xhdpi").matches()) {
             System.out.println("match") } else {
             System."no match") }
         "mipmap-xhdpi").matches()) {
             System. }
     }
}

纠结了半天发现自己画蛇添足地把逻辑符号或(|) 的左右添加了一个空格(可能是写代码习惯了-_-!!)

去掉作用两边的空格,其实上面四个正则表达式都是正确的


总结: 在用逻辑符或连接正则表达式时,千万不要为了好看而在左右添加空格!! (其他符号也是一样! 如^、$、*、.........不一而足...)

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读