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

learn more… | top users | synonyms

0
votes
3answers
26 views

Is a*b* regular?

I know a^nb^n for n > 0 is not regular by the pumping lemma but I would imagine a*b* to be regular since both a,b don't have to be the same length. Is there a proof for it being regular or not?
0
votes
0answers
19 views

Is it possible to create an interactive webapplication which implements concepts of theoretical informatics in javascript/html5 only?

So, here's my scenario: I've searched the web all over but didn't find a webapplication for... let's say "teaching" the concepts of theoretical informatics to students or whoever is interested by a ...
0
votes
0answers
22 views

Pumping Lemma for Regular Languages

I am trying to prove that the following language is not regular using the pumping lemma L = {ai bj | i = 2j for some j ≥ 0} I have decided to choose s = a2p bp, in this way |s| ≥ p and I can ...
0
votes
4answers
43 views

How to explain “$1,$2” in Javascript when using regular expression?

A piece of Javascript code is as follows: num="11222333"; re = /(\d+)(\d{3})/; re.test(num); num.replace(re, "$1,$2"); I could not understand the grammar of "$1,$2". The book from ...
0
votes
2answers
32 views

Is this result for regular expression backreferencing correct?

I used Javascript in the command line client of MongoDB v2.2.4 to run the following regular expression backreferencing: > /([AB])([AB])/("BA") [ "BA", "B", "A" ] I had thought I should get ...
-5
votes
2answers
38 views

create a regular expression of a specific sentence [closed]

I am using a constraint file for my system and basically i am using this line for parsing my values: angle(Vector(JointA,jointB),Vector(JointA,jointB),minValue,maxValue) Can you please help me and ...
-1
votes
0answers
50 views

I want to optimize my regex pattern

This is my regex pattern i want to optimize it, can any one provide alternative for it ? ([A-Za-z0-9,\\(\\)\\[\\]\\{\\}\"\\:./_\\s]|(?<!-)-)*
0
votes
2answers
40 views

python - How to remove some tags

I have a string like: text = ' A <EM ID="5103" CATEG="ORGANIZACAO" TIPO="INSTITUICAO">Legião da Boa Vontade</EM> comemora amanhã o <EM ID="5104" CATEG="VALOR" ...
1
vote
1answer
38 views

How to find “<script>” tag from the string with JAVASCRIPT/ regular expression

I need to validate the incoming string for text "<script". Eg: string a = "This is a simple <script> string"; Now I need to write a regular expression that will tell me, whether this string ...
2
votes
3answers
37 views

Any nonempty string - regular language

I don't really see the difference in expressions here. There's any string at all and then there's: any nonempty string Alphabet Σ: {a, b, c} I understand that (a+b+c)* can be either a, b, c But ...
-3
votes
1answer
24 views

Regular expression over a language - slight confusion [closed]

Alphabet: Σ = {0, 1} I'm not too sure what this question is asking. I've posted the answer (just so people don't think it's homework - I'm actually trying to learn these). I'm not quite sure why ...
2
votes
3answers
40 views

Regular expression over the following language

Alphabet E = {a, b, c} Question and answer: http://d.pr/i/3N41 I understand we must have two a's on the outside but why do we have [] and * - what do these do for this particular expression? In ...
3
votes
1answer
52 views

Regular Expression for a infinite language

I'm just kind of confused about regular expressions. Can there be a regular expression that recognizes an infinite language or do all regular expressions recognize finite languages?
2
votes
1answer
27 views

A regular expression for repeated, interleaved copies of a string?

Find a regular expression for this language: L = {λ, ab, abac, abacab,abacabac, abacabacab,...} Ok so I have been working of this problem for sometime now. So far I know that 'ab' repeats ...
3
votes
2answers
92 views

How to define pattern and allow pattern to repeat only when pattern is broken

I'm trying to write a JavaScript regular expression to only allow the following inputs: Numbers Numbers with commas in between Numbers with hyphens in between, but only followed by another number or ...
1
vote
1answer
39 views

How to exclude all subsequences of string from a long string in Java

How to write code in Java using Regex and ReplaceAll method which would exclude all subsequences from long string: :' goes to ' :+ goes to + +' goes to ' For example, if i have: string U:'0 that ...
2
votes
0answers
163 views

Algorithm to convert regular expression to linear grammar

What is the Standard Algorithm to convert any given Regular Expression(RE) to a Left (or Right) Linear Grammar? I know I can do this like this (to write Linear Grammar from RE): RegEx -> NFA ...
0
votes
1answer
18 views

regular expression with matching empty string

I am working on a django project to modify database options in the file settings.py.I want to use regular expression to do it. the options just like : 'PASSWORD':'123456', so I have write a ...
0
votes
2answers
90 views

HTML Input field pattern for numerical values.

I have an input field that I am using to get a monetary amount from a user. I am using a jQuery Money Mask function to put a mask over the user's input. So for example if the user types "100000" it ...
1
vote
1answer
93 views

What is this grammar? Context-free or context sensitive

I am studying Formal Languages and Automata Theory, and I have a question about a problem inside the book that is not answered in it. the question is: Is this language Context Free, Regular or ...
2
votes
5answers
175 views

What's the regex corresponding to this DFA?

Here is a DFA from a research project. We created the DFA manually. We are interested in What is Regular Expression that is corresponding to DFA . Certainly, there could be multiple Regular ...
2
votes
3answers
115 views

Ambiguity in transition

I have made DFA from a given regular expression to match the test string. There are some cases in which .* occurs. ( for example .*ab ) . Let say now the machine is in state 1. In the DFA, .* refers ...
0
votes
2answers
63 views

non-unicode use regex pattern less few letters

I understand that, for non-unicode, we use regex pattern x00-\x1F\x80-\x9F]+$. Can we have that regex excluding alphabetical lettersA, C, G, and T?
1
vote
2answers
83 views

Regular Expressions - Repeating Pattern

I just cannot seem to get it.... I have a string of text that I need to extract a repeating pattern from but I can only get a small part of it, or I get a single match of the whole string... The ...
1
vote
1answer
83 views

Regular expression to filter urls with strings repeated 3 times or more

I am using the regular expression (\b\w+\b)\W+\1{3,} to filter urls with strings repeated three times or more. I tried (\b\w+\b)\W+\1{3,} or (\b\w+\b)\W{3,}+\1 but of no help ...
3
votes
2answers
160 views

Can someone help me with this proof using the pumping lemma?

I just started reading about the pumping lemma and know how to perform a few proofs, mostly by contradiction. It is only this particular question which I don't seem to find an answer for. I have no ...
10
votes
2answers
198 views

Is there a way to negate a regular expression?

Given a regular expression R that describes a regular language (no fancy backreferences). Is there an algorithmic way to construct a regular expression R* that describes the language of all words ...
0
votes
0answers
46 views

Can a Language accept Infinite numbers

I have a question whether a language can accept infinite numbers I have to reduce Lempty to Linf where Lempty ={e|L(Pe) is null} Linf={e|L(Pe) is infinite} so can i define a program P like this " ...
0
votes
0answers
147 views

Context Free Grammar Tool Which Allows Regular Expressions

I'm attempting to build a parsing engine which will take as input a recipe, and identify each individual piece of information from that recipe. I believe the language of the recipes I'm allowing is ...
-3
votes
1answer
236 views

Finding Context Free Grammar of a given language [closed]

Find the Context Free Grammar(CFG) for a given language: L={0n 1m: m,n>=0 and n!=m 1}
1
vote
2answers
64 views

Regular Expression for matching keywords in different styles of URL's

http://mywebsite/index.aspx?db=DAYTON#id%3D7304%3Bpage%3D1%3Bview%3Dpages http://mywebsite/#id%3D3D7304%3Bpage%3D1%3Bview%3Dpages The two URL's above go to the exact same place but are of different ...
0
votes
1answer
84 views

What is the intersection of two languages with different alphabets? [closed]

I did some googling on this and nothing really definitive popped up. Let's say I have two languages A and B. A = { w is a subset of {a,b,c}* such that the second to the last character of w is b } B ...
-1
votes
1answer
111 views

Which programming languages are regular? [closed]

The typical response to any "why isn't this regex working html!?!" question is "because HTML isn't a regular language". So, I was curious if anyone had a list of common programming languages which ...
-2
votes
2answers
296 views

Is L = {a^n b^m | n>m} a regular or irregular language?

I have troubles in solving/proving this problem. Any ideas please?
0
votes
0answers
67 views

Is The Following Language Regular? [closed]

Let L1 and L2 be 2 languages over the same alphabet Σ. Assume that L1 is regular and L2 is context-free. The language A(L1,L2): is always a regular language is always not a regular language can ...
3
votes
1answer
96 views

simplify regex, [star] mysteriously disappears

! Problem This is my lecture notes;"Prove a*(b+ab*)=b+aa*b*" I am having trouble understanding what happened at line 3-> line 4; What I understand Two things happen at those two line; Take ab* out ...
1
vote
2answers
78 views

Representing identifiers using Regular Expression

The regular definition for recognizing identifiers in C programming language is given by letter -> a|b|...z|A|B|...|Z|_ digit -> 0|1|...|9 identifier -> letter(letter|digit)* This ...
0
votes
1answer
140 views

Is this a regular language? If so, what is it's regular expression?

B = {1^k y | k >= 1, y in {0, 1}* and y contains at least k 1's } Is this language regular? If so, how do you prove it, and how would you represent it with a regular expression in Python? This ...
3
votes
2answers
340 views

Finding the complement of a DFA?

I am asked to show DFA diagram and RegEx for the complement of the RegEx (00+1)*. In the previous problem I had to prove that the complement of a DFA is closed and is a regular expression also, so I ...
1
vote
2answers
143 views

CFG to regular expression

Here is the grammar, S -> A | B A -> 0000A | epsilon B -> 000B | epsilon I thought the regular expression for above is 0000(0000)*000(000)* // because 0000 and 000 will be spotted ...
0
votes
1answer
64 views

How to extract the words from the tree structure using Regex pattern

I need to extract the noun phrases from the tree structure, but i am unable to extract the nouns from the tree structure using regex pattern. Here is the tree structure (TOP (ADJP (JJ welcome) (PP ...
-1
votes
1answer
148 views

How to convert a context free grammar (could generate regular language) to a right-linear grammar [closed]

The context free grammar: (e represents epsilon) S --> aSb|aSa|bSa|bSb|e It could generate regular language which means it can be converted to a right linear grammar. Is there a general rule ...
1
vote
1answer
81 views

Example of Semi-Regular Grammar who's language is NOT regular

A "semi-regular" grammar is one that only allows rules of the form: X → y X → y Y X → Y y where X and Y are any single non-terminals, and x and y are any single terminals. For example, this is a ...
3
votes
1answer
392 views

Pumping lemma for regular language

I have a little confusion in checking whether the given language is regular or not using pumping lemma.Suppose we have to check whether " The language accepting even number of 0's is regular or ...
1
vote
2answers
137 views

Combining deterministic finite automata

I'm really new to this stuff so I apologize for the noobishness here. construct a Deterministic Finite Automaton DFA recognizing the following language: L= { w : w has at least two a's and an ...
0
votes
0answers
45 views

equivalence proof

how can i prove (E1 + E2).F^(omega) is equivalent to {E1.(F^omega)+E2.(F^omega)} while, two expressions are omega regular expressions, and E1, E2 and F are arbitrary regular expressions with ...
0
votes
2answers
124 views

regular expression all 0's and 1's 4 characters or less using only | () * and concat [closed]

Without using "extended" regex operators such as {}, ?, ^, and +, using only | () * and concat, how can a regular expression find all strings of length four or less if the only characters in the ...
-1
votes
2answers
158 views

How can I tell a regular language?

As we know, using pumping lemma, we can easily prove the language L = {WW|W ∈ {a,b}*} is not a regular language. However, The language, L1 = {W1W2| |W1| = |W2|} is a regular language. Because we can ...
1
vote
3answers
195 views

Why L={wxw^R| w, x belongs to {a,b}^+ } is a regular language

Using pumping lemma, we can easily prove that the language L1 = {WcW^R|W ∈ {a,b}*} is not a regular language. (the alphabet is {a,b,c}; W^R represents the reverse string W) However, If we replace ...
3
votes
1answer
75 views

How to write factorial function using the L language?

The L language consists of the instructions: V <- V V <- V+-1 IF V != 0 GOTO L, where each instruction may or may not have the label [L] How do I write the factorial function in L?

1 2 3 4