diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e2f3fd3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +*.log +*.trs \ No newline at end of file diff --git a/operators/verifysvnr.json b/operators/verifysvnr.json new file mode 100644 index 0000000..426dd86 --- /dev/null +++ b/operators/verifysvnr.json @@ -0,0 +1,26 @@ +[ + { + "param" : "([0-9]{4} ?[0-9]{6})", + "input" : "1237010180", + "ret" : 1, + "type" : "op", + "name" : "verifysvnr" + }, + { + "param" : "([0-9]{4} ?[0-9]{6})", + "input" : "asdf 1237 010180 asdf", + "ret" : 1, + "type" : "op", + "name" : "verifysvnr" + }, + { + "param" : "([0-9]{4} ?[0-9]{6})", + "input" : "asdf 0100817 asdf", + "ret" : 0, + "type" : "op", + "name" : "verifysvnr" + } + + + +]