The regexp-grammars tag has no wiki summary.
7
votes
1answer
129 views
What does a character class with only a lone caret do?
In trying to answer the question Writing text into new line when a particular character is found, I have employed Regexp::Grammars. It has long interested me and finally I had reason to learn. I ...
2
votes
1answer
168 views
Using perl's Regexp::Grammars, how do I make a capture dependent on $MATCH?
I've got a token like such:
<delim2=((?{ $MATCH{delim} }))>
and what I want to happen is for delim2 to capture and be set to the value of delim. When I run this, delim2 is set, but the ...
2
votes
2answers
175 views
How do I best do balanced quoting with Perl's Regexp::Grammars?
Using Damian Conway's Regexp::Grammars, I'm trying to match different balanced quoting ('foo', "foo", but not 'foo") mechanisms -- such as parens, quotes, double quotes, and double dollars. This is ...
1
vote
3answers
59 views
regexp: match character group or end of line
how to match ^ (begin of line) and $ (end of line) in a [] (character group)?
simple example
haystack string: zazty
rules:
match any "z" or "y"
if preceded by
an "a", "b"; or
at the beginning ...
1
vote
1answer
93 views
Should I use Parse::RecDescent or Regexp::Grammars to extract tables from documents?
I have lots of large plain text documents I wish to parse with perl. Each document has mostly English paragraphs in it, with a couple of plain text marked up tables in each document.
I have created ...
0
votes
1answer
102 views
Unambiguous Grammar for Regular Expressions
I'm trying to develop a recursive decent parser for regular expressions for a homework assignment. I just wanted to ask the community if the grammar I've developed is correct or if I'm on the right ...
0
votes
0answers
25 views
How to save matching order in %/?
Consider the following rule
<rule: str>
( <[token1]> | <[token2]> ) +
the output (%/) will be the same for the following inputs
input1: <token1> <token2> ...
0
votes
1answer
394 views
Unambiguous grammar for arithmetic expressions with no redudant parenthesis
I am looking for an unambiguous grammar for arithmetic expressions with no redundant parentheses. For example, parentheses are redundant in id+(id*id), but not in (id+id)*id.
Mahshid