Tagged Questions

is a language represented by regular expressions and must have a corresponding deterministic finite automata which accepts the language

learn more… | top users | synonyms

17
votes
3answers
299 views

Why aren't modern regular expression dialects regular?

I've seen a few comments here that mention that modern regular expressions go beyond what can be represented in a regular language. How is this so? What features of modern regular expressions are not ...
8
votes
2answers
380 views

What is the power of regular expressions?

As the name suggests we may think that regular expressions can match regular languages only. But regular expressions we use in practice contain stuff that I am not sure it's possible to implement with ...
8
votes
4answers
4k views

Regular vs Context Free Grammars

I'm studying for my Computing languages test and there's one idea I'm having problems wrapping my head around. I understand that Regular Grammars are simpler and cannot contain ambiguity but can't do ...
6
votes
1answer
126 views

Light regexp optimization

I have a regular expression that was the output of a computer program. It has things like (((2)|(9)))* which a human would undoubtedly write as [29]* So I'd like a program that can make simple ...
6
votes
4answers
2k views

Regular expression for strings with even number of a's and odd no of b's

Im having a problem in solving the problem:- Its an assignment, i solved it, but it seems to be too long and vague, Can anyboby help me please...... Regular expression for the strings with even ...
6
votes
3answers
385 views

substring match faster with regular expression?

After having read up on RE/NFA and DFA, it seems that finding a substring within a string might actually be asymptotically faster using an RE rather than a brute force O(mn) find. My reasoning is that ...
6
votes
3answers
133 views

Is it possible to have regexp that matches all valid regular expressions?

Is it possible to detect if a given string is valid regular expression, using just regular expressions? Say I have some strings, that may or may not be a valid regular expressions. I'd like to have a ...
6
votes
1answer
146 views

The Definition of Regular Languages

Good Day, I have tried, and burned my brain to understand the definition of Regular Languages in Discrete Mathematics and its Applications(Rosen) without reaching the goal of understanding why the ...
6
votes
2answers
208 views

Regular expression problem

What is the regular expression for the language 0m1n where m+n is even?
6
votes
5answers
365 views

What is regularity?

This is more of a computer science question than a programming one, but I figure that this is the best place out of all the related sites to ask this. When I discovered Regular Expressions and ...
6
votes
5answers
1k views

Is it possible to simplify this regular expression any further?

I'm working on some homework for my compiler class and I have the following problem: Write a regular expression for all strings of a's and b's that contain an odd number of a's or an odd number of ...
5
votes
2answers
121 views

Generative regular expressions

Typically in our work we use regular expressions in capture or match operations. However, regular expressions can be used - manually at least - to generate legal sentences that match the regular ...
5
votes
3answers
229 views

generalizing the pumping lemma for UNIX-style regular expressions

Most UNIX regular expressions have, besides the usual **,+,?* operators a backslash operator where \1,\2,... match whatever's in the last parentheses, so for example *L=(a*)b\1* matches the (non ...
4
votes
2answers
86 views

chomsky hierarchy in plain english

I'm trying to find a plain (i.e. non-formal) explanation of the 4 levels of formal grammars (unrestricted, context-sensitive, context-free, regular) as set out by Chomsky. It's been an age since I ...
4
votes
2answers
94 views

Is (a^p )(b^q) a regular language [closed]

I read somewhere that {(a^p)(b^q):p,Q belong to N} is a regular language. However, i dont think this is correct. This can be proved using pumping lemma. Just want to verify if my solution is correct ...
4
votes
3answers
165 views

How do I find the language from a regular expression?

How would I find the language for the following regular expressions over the alphabet {a, b}? aUb* (ab*Uc) ab*Ubc* a*bc*Uac EDIT: Before i get downvoted like crazy, i'd appreciate it if someone ...
3
votes
1answer
83 views

Is there an algorithm for determining if the set of all valid XML instances in respect with a specific XSD schema is a regular language or not?

Essentially I want to know if a specific XSD schema can be replaced by a regular expression or not. I know that XML Schema language can produce XSDs whose set of valid XML instances can be of any type ...
3
votes
2answers
300 views

Proving a Language to be regular

Pumping Lemma is used to prove a language to be not regular. But How a language can be proved to be regular ? In particular, Let L be a language. Define half(L) to be { x | for some y such that ...
3
votes
2answers
534 views

Theory of Computation - Showing that a language is regular

I'm reviewing some notes for my course on Theory of Computation and I'm a little bit stuck on showing the following statement and I was hoping somebody could help me out with an explanation :) Let A ...
2
votes
5answers
80 views

How should one proceed to prove (or find) if two regular expressions are same or equivalent?

For example, in an assignment given to me, we were asked to find out if two regular expressions are equal or not. (a+b+c)* and ((ab)**c*)* My question is how is one supposed to do that? If I draw ...
2
votes
3answers
70 views

find a regular expression for strings containing the substring aba over the alphabet {a, b}? (formal language theory)

The questions asks to find a regular expression for strings containing the substring aba over the alphabet {a, b}. Does this mean anything can precede/procede aba so that the regular expression would ...
2
votes
2answers
111 views

Constructing Strings using Regular Expressions and Boolean logic ||

How do I construct strings with exactly one occurrence of 111 from a set E* consisting of all possible combinations of elements in the set {0,1}?
2
votes
3answers
248 views

What is a regular language?

I'm trying to understand the concept of languages levels (regular, context free, context sensitive, etc..). I can look this up easily, but all explanations I find are a load of symbols and talk about ...
2
votes
1answer
138 views

Which programming languages have a regular grammar?

I'm curious about which (if any) real-world programming languages have a regular grammar (i.e. the set of all syntactically correct programs is regular). See also this question: What programming ...
2
votes
2answers
125 views

Proving that a language is regular by giving a regular expression

I am stumped by this practice problem (not for marks): {w is an element of {a,b}* : the number of a's is even and the number of b's is even } I can't seem to figure this one out. In this case 0 is ...
2
votes
3answers
101 views

What are the theoretical implications of unbounded lookbehind?

Most languages allow fixed-length or finite-length lookbehind. One notable exception is .NET, which allows the use of the * operator. However, .NET regexs can already recognize balanced parentheses ...
2
votes
1answer
197 views

How do you classify languages into regular, context free, and phrase-structure?

If you're given a language, how do you figure out if it's regular, CF but not regular, or phrase-structure but not CF? Is there a good way to attack this problem? I could randomly try to make FAs or ...
2
votes
2answers
1k views

Why is {a^nb^n | n >= 0} not regular?

In a CS course I'm taking there is an example of a language that is not regular: {a^nb^n | n >= 0} I can understand that it is not regular since no Finite State Automaton/Machine can be written ...
2
votes
1answer
175 views

Textual Protocol which is not a regular language?

The usual way to represent way the grammar associated with a textual network protocol is using ABNF. Just like any EBNF-related meta-syntax, ABNF enables to describe context-free grammars. These ...
1
vote
1answer
33 views

Application of Brzozowski Algebraic Method on this FA

Earlier, I asked a question on here asking for help with the conversion of a transition-graph of a finite automaton into a regular expression: Understanding (and forming) the regular expression of ...
1
vote
2answers
49 views

Understanding (and forming) the regular expression of this finite automaton

For the above automaton, the regular expression that has been given in my textbook is the following : a*(a*ba*ba*ba*)*(a+a*ba*ba*ba*) I am having trouble deriving this...the following is my ...
1
vote
1answer
28 views

Finding a compliment of a regular language

Could you help me please to find a compliment of a language, which ends with abab - (a|b)*abab (over an alphabet {a,b}) I guess, the compliment must contain all string, that don't end with abab. One ...
1
vote
1answer
131 views

Is a language L = {s ∈ (0 + 1)* | d(s) mod 5 =2 and d(s) mod 7 !=4 } regular?

While reading from a book I had this doubt. It mentions that L = {s ∈ (0+1)* | n0(s) mod 7 = n1(s) mod5 =0} is regular Where n0(s) = number of 0’s in s and n1(s) = number of 1’s in s Further it ...
1
vote
2answers
117 views

Why is the complement of a regular language still a regular language?

According to my textbook, the complement of L1 = A* - L1 is a regular language as long as L1 is a regular language. Doesn't A* also include Context Free languages, Context Sensitive languages, and ...
1
vote
1answer
98 views

Regular expression. Regular or Irregular?

I just want to get a second opionion on these expression and whether they are irregular or regular. {0^n 1^m | n >= m >=0} REGULAR {0^n 1^m | n,m >=0}* REGULAR {0^n 0^n | n>=0} ...
1
vote
2answers
77 views

Regular expression equivalences

Is the following regular expression equivalence true? Why or why not? (ab)* u (aba)* = (ab u aba)* *=Kleene star u=Union (Set Theory)
1
vote
1answer
61 views

differentiating and testing regex variants

Several implementations of regular expressions differ from each other in subtle ways which is the source of much confusion when I try to use them. Most of these differences include the semantics ...
1
vote
2answers
43 views

Regular Expression, how to find a word that is not a part of a bigger word

I wonder if there is an Enum in C# for Regular Expressions that returns true if the word you are looking for is found, and not as a bigger expression. For example if I am looking for the word "tv", ...
1
vote
1answer
292 views

Closure properties of context-free languages and intersection with regular languages

The intersection of a context-free language and a regular language is always context-free but context-free languages are not closed under set intersection. Could anyone explain why both theorems are ...
1
vote
2answers
38 views

How to recognise blank spaces using regular expressions

how would I extend this preg_replace (in PHP), using regular expressions to replace white spaces also.. $this->permalink = preg_replace('[^a-z0-9]', '-', $this->permalink); It's for ...
1
vote
2answers
46 views

Describing RE's in English Language

I have the following question from a past exam paper: I am struggling to formalise their definitions within the necessary 15 word limit. So far I have: i) The empty string or set of strings that ...
1
vote
3answers
75 views

Replacement in regular expression

I have a list: 1 name1 2 name2 3 name3 I need to replace all 1,2,3... to '1', '2', '3'...and name1, name2, name3 to 'name1', 'name', 'name'3. I know how to do it via '\n' and '\s'. But I think ...
1
vote
1answer
346 views

Using Closure Properties to prove Regularity

Here's a homework problem: Is L_4 Regular? Let L_4 = L*, where L={0^i1^i | i>=1}. I know L is non-regular and I know that Kleene Star is a closed operation, so my assumption is that L_4 is ...
1
vote
1answer
198 views

Context free grammar for this language

I'm working on some test preparation material and stuck on this problem. Show a context free grammar for L = {w e {a,b}*: w = wR and every a is immediately followed by a b}. wR is w in reverse. So, ...
1
vote
2answers
247 views

Design a language L such that neither L nor its complement has an infinite regular subset?

I'm having a class on automata theory, and right now we are learning the pumping lemma. There is an exercise question asking us to "Design a language L such that neither L nor its complement has an ...
1
vote
1answer
251 views

Quick/Simple Regex/Regular Language Clarification

I feel like a moron posting such simple questions on here, but the knowledge base of this site is just amazing. Thanks for your understanding. Concerning a question about finding the minimum pumping ...
1
vote
1answer
182 views

FA for regular expression

Give an FA for the set of the strings with alphabet {a,b} that contain both or neither aa and bb as substrings. It means FA accept all strings without aa and bb as substrings. correct me if I wrong ...
1
vote
1answer
144 views

Scheme, When to use Symbols instead of Strings?

I apologize in advance for my primitive english; i will try my best to avoid grammatical errors and such. Two weeks ago i decided to freshen my knowledge of Scheme (and its enlightnings) whilst ...
1
vote
1answer
197 views

abusing ragel, possibly need new approach / tool

I'm trying to use Ragel to implement a simple yes/no fsm. Unfortunately the language specification consists of the union of about a thousand regular expressions, with * operators appearing once or ...
1
vote
2answers
290 views

deriving regular expressions from a regular language

Given the language below, how do i find a regular expression for the language L = {a ^n b ^m | n => 1, m =>1, nm =>3}

1 2