HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: //usr/share/doc/libparse-recdescent-perl/examples/demo_PerlCSV.pl
#!/usr/bin/perl -w

use Parse::RecDescent;

my $PCSV_parser = Parse::RecDescent->new(<<'EOGRAMMAR');

	file:	<skip: '[ \t]*'> line(s?)

	line:	field(s? /,|=>/) "\n" 	{ $item[1] }

	field:	<perl_quotelike>	{ join "", @{$item[1]} }
	     |	/((?!,|=>).)*/

EOGRAMMAR

use Data::Dumper;

print  Data::Dumper->Dump($PCSV_parser->file(join "", <DATA>));

__DATA__
comma,separated=>values
with,q{a,perl,twist},/to them/