Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: Quoted Text rule for Parse::RecDescent?

by TheDamian (Vicar)
on Aug 23, 2005 at 20:39 UTC ( [id://486011]=note: print w/replies, xml ) Need Help??


in reply to Quoted Text rule for Parse::RecDescent?

To extra a quotelike string from your text, you just need:

string: <perl_quotelike> { $item[0][2] }

For more details, take a look at: the appropriate section of the documentation.

Damian

Replies are listed 'Best First'.
Re^2: Quoted Text rule for Parse::RecDescent?
by suaveant (Parson) on Aug 26, 2005 at 18:10 UTC
    Ahh... I saw that, but I had some trouble figuring out how to limit it to ' and ", thanks.

                    - Ant
                    - Some of my best work - (1 2 3)

      Presumably now you've worked out that, to restrict it to quoted texts, you need something like:
      string: <perl_quotelike> { my ($marker, $quote, $text) = @{$item[0]}[0..2]; !marker && $quote =~ /['"]/ ? $text : undef }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://486011]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (6)
As of 2024-03-19 11:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found