Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: Random Tips on Parse::RecDescent

by davistar (Novice)
on Feb 02, 2006 at 19:39 UTC ( [id://527410]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    xcomment:
            <skip: qr/[ \t]*/> newline(0..) '<!--'
    ...
                ($text,$return) = main::parse_delimited($text,'<!--','-
    ++->');
                 $return = ['xcomment',$return];
            }
    
  2. or download this
    comment:
            <skip: qr/[ \t]*/> newline(0..) '/*'
    ...
                ($text,$return) = main::parse_delimited($text,'/*','*/');
                 $return = ['comment',$return];
            }
    
  3. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    World
    */
    
  4. or download this
    Argument "/*" isn't numeric in addition (+) at C:/Perl/site/lib/Parse/
    +RecDescent.pm line 2783, <DATA> line 1.
    Use of uninitialized value in substitution (s///) at (eval 15)[C:/Perl
    +/site/lib/Parse/RecDescent.pm:2618] line 22, <DATA> line 1.
    Use of uninitialized value in concatenation (.) or string at (eval 15)
    +[C:/Perl/site/lib/Parse/RecDescent.pm:2618] line 23, <DATA> line 1.
    Use of uninitialized value in substitution (s///) at (eval 15)[C:/Perl
    +/site/lib/Parse/RecDescent.pm:2618] line 23, <DATA> line 1.
    Use of uninitialized value in substitution (s///) at (eval 15)[C:/Perl
    +/site/lib/Parse/RecDescent.pm:2618] line 23, <DATA> line 1.
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (3)
As of 2024-04-20 01:19 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found