Java 正则匹配sql

文章目录

在线正则校验

正则匹配sql表名称

insert into

sql 复制代码
insert into PING_TABLE (CODE, NAME) VALUES('0', '待提交'),('1', '审核中'),('2', '审核通过'),('3', '已驳回');
regex -> insert\sinto\s(\w+)\s*\(?

update

sql 复制代码
update STATE_WARNNINGSUBTYPE_TABLE set 
regex -> update\s(\w+)\s*(set)?

正则表达式什么时候要加^$

加^$的话就代表把整个要匹配的字符串当成一个整体做一次匹配,

而不加则一个字符串可以匹配多次,代表这个字符串中有符合条件的

如"^abc$"只能匹配abc;"abc"不仅可以匹配abc,还可以匹配abcd

java 复制代码
 public static boolean checkLength(String rule, String source) {
        if (rule.contains(",")) {
            String[] r = rule.split(",");
            return Pattern.matches(String.format("^[0-9]{%s}(\\.[0-9]{%s})?$", (Integer.parseInt(r[0]) - Integer.parseInt(r[1])), r[1]), source);
        }
        if (Pattern.compile("[\\u4e00-\\u9fa5]").matcher(source).find()) {
            return source.length() <= Integer.parseInt(rule);
        }
        return Pattern.matches(String.format("^[A-Za-z0-9]{%s}$", rule), source);
    }
相关推荐
百***490026 分钟前
SQL Server查看数据库中每张表的数据量和总数据量
数据库·sql·oracle
夏天的味道٥1 小时前
@JsonIgnore对Date类型不生效
开发语言·python
代码or搬砖1 小时前
MyBatisPlus中的常用注解
数据库·oracle·mybatis
盼哥PyAI实验室1 小时前
MySQL 数据库入门第一课:安装、账户、库、表与数据操作详解
数据库·mysql
tsumikistep1 小时前
【前后端】接口文档与导入
前端·后端·python·硬件架构
q***38511 小时前
SpringCloud实战十三:Gateway之 Spring Cloud Gateway 动态路由
java·spring cloud·gateway
小白学大数据2 小时前
Python爬虫伪装策略:如何模拟浏览器正常访问JSP站点
java·开发语言·爬虫·python
程序员西西2 小时前
SpringBoot接口安全:APIKey保护指南
java·spring boot·计算机·程序员·编程·编程开发
summer_west_fish3 小时前
单体VS微服务:架构选择实战指南
java·微服务·架构
v***8573 小时前
Ubuntu介绍、与centos的区别、基于VMware安装Ubuntu Server 22.04、配置远程连接、安装jdk+Tomcat
java·ubuntu·centos