这是一个字符串拼接工具,可以用于 OJ 的测试数据生成, 点我在线体验。
假装自己有个 CFG
template = *[statement 1*breakLine]
breakLine = "\n"
statement = constraint | repeat
constraint = intConstraint | setConstraint
intConstraint = "constraint" " " varName " " "int" " " number " " number
setConstraint = "constraint" " " varName " " "set" " " setValues
setValues = stringValue [ " " setValues ]
repeat = repeatLine | repeatGroup
repeatLine = "repeat" " " varName|number " " repeatContent
repeatGroup = "repeat group" " " varName|number breakLine *[ repeatLine breakLine ] "end group"
repeatContent = (utf8char - "$") | ( "${" varName "}" ) *repeatContent
varName = stringValue
number = 1*digit
digit = "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9"
stringValue = 1*utf8char
现在只支持两种语句
constraint 约束 限制变量取值
repeat 重复 会输出内容
重要 每一个变量都需要有约束
constraint 变量名 int 最小值 最大值
比如
constraint n int 1 233
变量名 最好都是字母(汉字也行)
最小值和最大值可以是别的变量名
区间是左闭右开
constraint 变量名 set value1 value2 value3
比如
constraint 数字 set 一 二 三 四
value 之间使用空格分隔
repeat 重复次数 重复的内容
重复次数 可以是一个数字,也可以是一个变量
从紧跟 重复次数 的空格后面开始,到这一行结束都会被视为一个模板,我们使用 ${变量名}
来引用一个变量
比如
repeat 1 ${n}
亦或者
repeat 1 prefix string ${n}
都是被允许的
repeat group 重复次数
repeat line
repeat line
repeat line
end group
重复次数 可以是一个数字,也可以是一个变量
举个例子,假如我们的数据是
第一行输入一个 n,代表接下来有 n 行数据,每行数据有三个数 a b c
那么就是
repeat 1 ${n}
repeat n ${a} ${b} ${c}
然后补充一下约束就好了
再举一个例子
假如我们的数据是这个样子的
第一行是 n,代表接下来有 n 组数据
每组数据的第一行有三个数 row min max,代表接下来有 row 个数字,每个数字的取值是 [min, max)
那我们可以这样写
constraint n int 5 10
constraint row int 10 20
constraint min int 150 200
constraint max int 500 1000
constraint num int min max
repeat 1 ${n}
repeat group n
repeat 1 ${row} ${min} ${max}
repeat row ${num}
end group
来一个 set 的例子
constraint 姓 set 赵 钱 孙 李
constraint 名 set 一 二 三 四
repeat 10 ${姓}${名}
当然,本质是个字符串拼接,也可以写别的东西
constraint 姓 set 赵 钱 孙 李
constraint 名 set 一 二 三 四
constraint value int 10 1000
constraint status int 0 2
repeat 10 INSERT INTO list (name, value, status) VALUES ("${姓}${名}", ${value}, ${status});
程序没有检查输入是否合法,所以需要你自己注意一下 :)
不存在的
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.