vote up 4 vote down star
2

I know that some of the capabilities of the Perl regular expression engine are not regular. However, what class is it? It might be context-free, but CS theory was never my strongest subject.

flag

4  
I'm curious as to why people are downvoting/marking to close...explanations? – Thomas Owens Sep 30 at 14:30
3  
haha i love how this has a vote to close for being subjective and argumentative! just bc two of the answers so far (one was deleted) haven't even addressed the question, does not mean close it. and how is this subjective? this isn't a question of what should it be; it's a question of what it is, which is objective. – geowa4 Sep 30 at 14:32
4  
Funny that something about maths and formal languages was considered as subjective :p – Pierre Bourdon Sep 30 at 14:35
The marked answer's link does not give a complete answer to the question,What is the class of languages that Perl regexes can recognize? – Paul Nathan Oct 1 at 19:35
Paul: Yes, it does: "Many features found in modern regular expression libraries provide an expressive power that far exceeds the regular languages." and "This has led to a nomenclature where the term regular expression has different meanings in formal language theory and pattern matching." – Thomas Owens Oct 1 at 19:56
show 1 more comment

2 Answers

vote up 2 vote down check

Actually, many implementations are neither regular nor context-free; patterns have become their own beast. This Wikipedia article has more on this, including a bit from Larry Wall, the author of the Perl language.

link|flag
I was just going to link to this exact same page :) – Pierre Bourdon Sep 30 at 14:30
vote up -6 vote down

The regular expression engine in JavaScript is the PERL regexp engine. The PERL regexp engine appears to be the most popular and widely used even if dated and imprecise to compared to the more modern XML Schema regexp engine.

link|flag
5  
This doesn't answer the question at all...I'm referring to formal language theory. – Thomas Owens Sep 30 at 14:18
You should edit your question, because even if that is what you meant it is not what you asked. You asked what class of language. A language class is any group of languages sharing a common syntax or scope interpretation mechanism. If want a specific answer then please in the future ask a specific question and say what you meant and not what you meant to say. – austin cheney Sep 30 at 14:28
The exact term would be "language family" according to Wikipedia – Pierre Bourdon Sep 30 at 14:32
My question is pretty clear - I clearly talk about regular and context free languages, which are classes of languages in formal language theory. – Thomas Owens Sep 30 at 14:35
3  
1. JavaScript regexes are based on Perl's, but every JS flavor has its own regex engine, none of them the same as Perl's. 2. Who said anything about JavaScript anyway? 3. It's "Perl", not "PERL". 4. XML Schema regex is just another Perl regex derivative, one that's optimized for use in that particular context. Perl still has by far the most powerful regex engine out there; to call it "dated and imprecise" makes no sense at all. – Alan Moore Sep 30 at 17:31
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.