从正则表达式生成随机数据
项目地址
https://github.com/GitHub-Laziji/reverse-regexp
安装
git clone https://github.com/GitHub-Laziji/reverse-regexp.git cd reverse-regexp mvn install
<dependency> <groupId>org.laziji.commons</groupId> <artifactId>reverse-regexp</artifactId> <version>1.0-SNAPSHOT</version> </dependency>
使用
随机字符语法
支持大部分正则表达式的匹配语法
d 数字, 相当于[0-9] w 数字、字母加下划线, 相当于[0-9a-zA-Z_] s 空白字符, 只包含空格和制表符 . 除n和r以外的任意字符, 生成随机字符时只在ascii码0~255之间生成 [a-zA-Z甲乙] 区间, 不支持^语法 以及其他字符重复打印语法
与正则表达式的重复匹配语法相同
? 随机生成0个或1个字符 * 随机生成0个以上字符, 默认最多16个 + 随机生成1个以上字符, 默认最多16个 {n} 生成n个字符 {n,} 随机生成n~个字符, 默认最多max(16,n)个 {n,m} 随机生成n~m个字符其他语法
| 或语法, 例如aaa|bbb|ccc随机生成aaa或bbb或ccc, 概率相等 () 支持括号
public class MainTest {
@Test
public void test() throws RegexpIllegalException, UninitializedException, TypeNotMatchException {
random("w{6,12}@[a-z0-9]{3}.(com|cn)", "邮箱");
random("1(3|5|7|8)d{9}", "手机号");
random("-?[1-9]d*.d+", "浮点数");
random("https?://[w-]+(.[w-]+){1,2}(/[w-]{3,6}){0,2}(?[w_]{4,6}=[w_]{4,6}(&[w_]{4,6}=[w_]{4,6}){0,2})?", "网址");
}
private void random(String expression, String title)
throws RegexpIllegalException, TypeNotMatchException, UninitializedException {
System.out.println(title + " " + expression);
Node node = new OrdinaryNode(expression);
Pattern pattern = Pattern.compile(node.getExpression());
for (int i = 0; i < 10; i++) {
String data = node.random();
System.out.println("[" + pattern.matcher(data).matches() + "] " + data);
}
System.out.println();
}
}
输出
邮箱 w{6,12}@[a-z0-9]{3}.(com|cn)
[true] 19cZ8eISNA@9je.com
[true] xpv3wJ@i3h.cn
[true] 6qDUfY@1g9.com
[true] iVnZSMA373@6zd.cn
[true] I5wiX97@ffe.cn
[true] mwqA5sXQ@g8j.cn
[true] HUXiCem1Y0w@j98.cn
[true] 1jOQWsELF@u1o.cn
[true] _Q4QTvxPeMFh@bds.com
[true] 3xFH33Aa@6lh.cn手机号 1(3|5|7|8)d{9}
[true] 18263364656
[true] 17539493178
[true] 17452542895
[true] 15190699623
[true] 13441385631
[true] 15450856416
[true] 18651247283
[true] 13835809899
[true] 18595798569
[true] 17115703866浮点数 -?[1-9]d*.d+
[true] 8148340336.1501586550282701
[true] -3339660539.406









