admin管理员组

文章数量:1344095

I was reading Douglas Crockford's web page, JavaScript: The World's Most Misunderstood Programming Language, and I couldn't help but notice that, under Design Errors, he mentions "the notation for literal regular expressions." What exactly is he talking about? What's wrong with JavaScript's notation for regular expressions, and why?

I was reading Douglas Crockford's web page, JavaScript: The World's Most Misunderstood Programming Language, and I couldn't help but notice that, under Design Errors, he mentions "the notation for literal regular expressions." What exactly is he talking about? What's wrong with JavaScript's notation for regular expressions, and why?

Share Improve this question edited Jun 20, 2010 at 6:52 cherouvim 31.9k15 gold badges106 silver badges156 bronze badges asked Jun 20, 2010 at 6:35 Sasha ChedygovSasha Chedygov 131k26 gold badges106 silver badges116 bronze badges 0
Add a ment  | 

4 Answers 4

Reset to default 9

Might have to do with the fact that it enforces you to escape / characters, perhaps he wanted a more unique character to use as the notation.

/test// is invalid, while /test\// is a valid regex.

Whereas in some languages you can actually specify the denotion character in a string, eg:

$regex = '#test/#';

Where # symbols do the denotion.

I could imagine that the regex literal notation is a hindrance for evolving the regex engine decoupled from the language specification.

If all regexes were strings, they were always valid at the language level, and the regex engine could interpret them more freely.

But that's just a guess. I have no idea what Crockford meant with his statement.

Personally I find regex literals rather helpful. The are a lot less verbose than the new RegExp(pattern, flags) alternative with its need to adhere to both regex escaping and string escaping rules ("Path\\\\with\\\\backslashes", anyone?). I can't see the huge benefit for this notation, other than for dealing with dynamic regexes.

He really isn't very clear on what he means by semicolon insertion being a mistake. Perhaps he means semicolons as statement delimiters. If that's the case, I disagree. Without semicolons code obfuscators/minifiers don't run on your code.

Possibly messed up with slashes used for ments and division per this or because "they should be one line with no white space or mentary inserted to it" per this.

本文标签: regexWhat39s wrong with JavaScript39s regular expression notationStack Overflow