Tagged Questions
The parse-recdescent tag has no wiki summary.
3
votes
1answer
80 views
Is Perl's Parse::RecDescent thread safe?
I have a web application that uses a parser created with Parse::RecDescent. A parser object is needed in several parts of the application and since the parser takes quite a bit of memory I have up to ...
2
votes
2answers
102 views
parsing different files of the same grammar and calculating file to file similarities
I've got a bunch of ACPI Source Language files and I want to calculate file to file similarities between them. I thought of using something like Perl's Parse::RecDescent
but I am stuck at:
1) ...
2
votes
1answer
139 views
Interpolating variables in a Parse::RecDescent regex
I'm working on a Parse::RecDescent grammar to read a given human-readable set of rules and then spit out a file that is much easier for a computer to read.
One of the tokens is a list of "keywords"; ...
1
vote
1answer
83 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 ...
1
vote
1answer
91 views
Printing and concatenation with Parse::RecDescent
I am testing the grammar from P::RD tutorial in order to develop my own grammar.
I haven't figured out how to print a string declaration and append '$' to the front of it.
For example "STRING sDir" ...
1
vote
2answers
231 views
Parse::RecDescent - getting information from it
I'm working with the Parse::RecDescent parser in Perl, and I seem to have the most terrible time getting information from it. The information readily available online does not seem to have non-trivial ...
1
vote
1answer
264 views
Why does my Parse::RecDescent give me all these warnings and errors?
Having a lot of pain with the following Perl file parsing code [last reply on PM @http://www.perlmonks.org/index.pl?node_id=754947] below:
#!/usr/bin/perl -w
use strict;
use warnings;
#use ...
0
votes
1answer
40 views
Parse::RecDescent parse sub name
I use module Parse::RecDescent
and try to build grammar to catch perl sub name
why in my code
https://gist.github.com/1595532
not work gramma
get_sub:
NOWORD TEST NOWORD
on '>test1$' ...