来自MySQL数据库的RegExp Literal

时间:2014-05-21 18:37:27

标签: javascript jquery mysql regex

我想从数据库javascript文字正则表达式中获取,并且它在引号之间是完全正确的。我可以做什么来获得没有引号的表达式,请在下面找到示例。 这是php文件:http://klmgr.jest.guru/getjson.php从数据库获取表达式 在jQuery代码下面:



    var sources = [];
    $.getJSON('http://klmgr.jest.guru/getjson.php?callback=?', function(data) {
        $.each(data, function(key, val) {
            sources.push(val.source);
        });
    });


1 个答案:

答案 0 :(得分:0)

要将字符串转换为RegExp,请使用new RegExp(string)

var sources = [];
$.getJSON('http://klmgr.jest.guru/getjson.php?callback=?', function(data) {
    $.each(data, function(key, val) {
        sources.push(new RegExp(val.source));
    });
});