-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathxeger.js
187 lines (153 loc) · 3.42 KB
/
xeger.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
module.exports = function (cb, options) {
if (typeof cb !== 'function') {
options = cb;
}
var r = new Xeger(cb, options);
if (typeof cb === 'function') {
return r.regex();
} else {
return r;
}
};
var Xeger = function (cb, options) {
options = options || {};
this.regexStr = '';
this.flags = '';
if (options.multiline) {
this.flags += 'm';
}
if (options.global) {
this.flags += 'g';
}
if (options.insensitive) {
this.flags += 'i';
}
if (typeof cb === 'function') {
cb.call(this, this);
}
};
/* Public */
Xeger.prototype.literal = function (str, options) {
var hasOptions = typeof options === 'object' &&
Object.keys(options).length > 0 &&
str.length > 1;
if (hasOptions) {
this.add('(?:');
}
this.add(escape(str));
if (hasOptions) {
this.add(')');
}
this.addOptions(options);
return this;
};
Xeger.prototype.alphanumeric = function (options) {
this.add('\\w');
this.addOptions(options);
return this;
};
Xeger.prototype.number = function (options) {
this.add('\\d');
this.addOptions(options);
return this;
};
Xeger.prototype.newline = function (options) {
this.add('\\n');
this.addOptions(options);
return this;
};
Xeger.prototype.whitespace = function(options){
this.add('\\s');
this.addOptions(options);
return this;
};
Xeger.prototype.start = function () {
this.add('^');
return this;
};
Xeger.prototype.end = function () {
this.add('$');
return this;
};
Xeger.prototype.to = function () {
this.add('-');
return this;
};
Xeger.prototype.any = function (str, options) {
if (typeof str === 'string') {
this.add('[' + escape(str) + ']');
} else if (typeof str === 'function') {
var cb = str;
this.add('[');
cb.call(this, this);
this.add(']');
} else {
options = str;
this.add('.');
}
this.addOptions(options);
return this;
};
Xeger.prototype.not = function (str, options) {
if (typeof str === 'string') {
this.add('[^' + escape(str) + ']');
} else if (typeof str === 'function') {
var cb = str;
this.add('[^');
cb.call(this, this);
this.add(']');
}
this.addOptions(options);
return this;
};
Xeger.prototype.group = function (cb, options) {
this.add('(');
if (options && options.ignore) {
this.add('?:');
}
cb.call(this, this);
this.add(')');
this.addOptions(options);
return this;
};
Xeger.prototype.regex = function () {
return new RegExp(this.regexStr, this.flags);
};
/* Private */
Xeger.prototype.addOptions = function (options) {
options = options || {};
if (options.multiple && options.optional) {
this.add('*');
} else if (options.multiple) {
this.add('+');
} else if (options.optional) {
this.add('?');
} else if (typeof options.repeat === 'number') {
this.add('{' + options.repeat + '}');
} else if (
typeof options.from === 'number' ||
typeof options.to === 'number'
) {
this.add('{');
if (typeof options.from === 'number') {
this.add(options.from);
}
this.add(',');
if (typeof options.to === 'number') {
this.add(options.to);
}
this.add('}');
}
};
Xeger.prototype.add = function (str) {
this.regexStr += str;
};
var escape = function (str) {
return str.split('').map(function (char) {
if (/\w/.test(char)) {
return char;
} else {
return '\\' + char;
}
}).join('');
};