组件化功能基本完成

This commit is contained in:
laoyuyu
2019-09-29 20:07:21 +08:00
parent 7ee1347ab4
commit 2a92321785
337 changed files with 5186 additions and 3250 deletions

View File

@@ -0,0 +1,33 @@
package com.arialyy.aria.util;
/**
* Created by Aria.Lao on 2017/10/24.
* 正则表达式
*/
public interface Regular {
/**
* 获取文件名
*/
String REG_FILE_NAME = "[/|\\\\|//]";
/**
* IPV4地址匹配
*/
String REG_IP_V4 = "(([01]?\\d\\d?|2[0-4]\\d|25[0-5])\\.){3}([01]?\\d\\d?|2[0-4]\\d|25[0-5])";
/**
* 匹配双字节字符、空格、制表符、换行符
*/
String REG_DOUBLE_CHAR_AND_SPACE = "[^\\x00-\\xff]|[\\s\\p{Zs}]";
/**
* 匹配window.location.replace
*/
String REG_WINLOD_REPLACE = "replace\\(\".*\"\\)";
/**
* 匹配BANDWIDTH
*/
String BANDWIDTH = "[0-9]{3,}";
}