我有一个名单列表,我需要一个功能供用户使用通配符*和?过滤它们? (任何字符串和任何字符。)我知道我需要清理用户输入以避免语法注入(有意或无意),但我不知道需要清理多少。
我需要更换*和?从用户输入?
var names = [...];
var userInput = field.value;
/* Replace * and ? for their equivalent in regexp */
userInput = userInput.replaceAll(...);
userInput = userInput.replaceAll(...);
/* clean the input */
userInput = userInput.replaceAll(...);
userInput = userInput.replaceAll(...);
...
var regex = new Regexp(userInput);
var matches = [];
for (name in names) {
if (regex.test(name)) {
matches.push(name);
}
}
/* Show the results */
感谢。
答案 0 :(得分:10)
function globToRegex (glob) {
var specialChars = "\\^$*+?.()|{}[]";
var regexChars = ["^"];
for (var i = 0; i < glob.length; ++i) {
var c = glob.charAt(i);
switch (c) {
case '?':
regexChars.push(".");
break;
case '*':
regexChars.push(".*");
break;
default:
if (specialChars.indexOf(c) >= 0) {
regexChars.push("\\");
}
regexChars.push(c);
}
}
regexChars.push("$");
return new RegExp(regexChars.join(""));
}
答案 1 :(得分:0)
new RegExp(userInput)
将失败,则永远不会eval()
字符串。