语法高亮显示器js文件出错

时间:2014-10-09 09:46:34

标签: javascript syntax syntax-error syntax-highlighting geshi

我使用此代码突出显示我的" Lua"代码:

SyntaxHighlighter.brushes.Lua = function()
{
var keywords =  'break do end else elseif function if local nil not or repeat return and then until while this';
var funcs = 'math\\.\\w+ string\\.\\w+ os\\.\\w+ debug\\.\\w+ io\\.\\w+ error fopen dofile coroutine\\.\\w+ arg getmetatable ipairs loadfile loadlib loadstring longjmp print rawget rawset seek setmetatable assert tonumber tostring';
var operators = '~ ! @ # $ % ^ & * ( ) - + = . / ; ? { }';

this.regexList = [
    { regex: new RegExp('--\\[\\[[\\s\\S]*\\]\\]--', 'gm'),     css: 'comments' },
    { regex: new RegExp('--[^\\[]{2}.*$', 'gm'),                css: 'comments' },  // one line comments
    { regex: SyntaxHighlighter.regexLib.doubleQuotedString,     css: 'string' },    // strings
    { regex: SyntaxHighlighter.regexLib.singleQuotedString,     css: 'string' },    // strings
    { regex: new RegExp(this.getKeywords(keywords), 'gm'),      css: 'keyword' },   // keyword
    { regex: new RegExp(this.getKeywords(funcs), 'gm'),         css: 'func' },      // functions
    { regex: new RegExp(this.getKeywords(operators), 'gm'),    css: 'operator' },   // operators
    ];
}

SyntaxHighlighter.brushes.Lua.prototype = new SyntaxHighlighter.Highlighter();
SyntaxHighlighter.brushes.Lua.aliases = ['lua'];

我在控制台中看到此错误:

Uncaught SyntaxError: Invalid regular expression: /\b(?:~|!|@|#|$|%|^|&|*|(|)|-|+|=|.|/|;|?|{|})\b/: Nothing to repeat 

请帮我解决这个错误。 感谢。

1 个答案:

答案 0 :(得分:0)

您收到的错误是由于生成了以下正则表达式:

\b(?:~|!|@|#|$|%|^|&|\*|(|)|-|\+|=|.|\/|;|\?|{|})\b

需要对令牌进行转义才能完全匹配各自的字符。也就是说,如果要匹配foo$bar,则应使用foo\$bar,因为$标记表示字符串的开头。因此,生成的正则表达式应为:

\b(?:~|!|@|#|\$|%|\^|&|\*|\(|\)|-|\+|=|\.|\/|;|\?|{|})\b

之前我从未使用过GeSHi或其SyntaxHighlight扩展,但最好的猜测是使用以下内容:

var operators = '~ ! @ # \\$ % \\^ & \\* \\( \\) - \\+ = \\. \\/ ; \\? { }';