Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: Record Separator affecting Regex

by insensate (Hermit)
on Nov 07, 2002 at 19:11 UTC ( [id://211188]=note: print w/replies, xml ) Need Help??


in reply to Record Separator affecting Regex

Would something like this suffice? The \m modifier lets the ^ metacharacter match next to a newline in your multiline $line value.
#!/usr/bin/perl $/ = ";\n"; while (my $line = <DATA> ){ $line =~ s/^#.*[\n\r]*//gm; print "Query: $line" unless $line=~/^\s+$/; } __DATA__ # one comment # two comment # another comment insert into table_name values(1, 'testing 1 2 3'); # more comments insert into table_name values (2, 'test &#149;')
OUTPUT:
Query: insert into table_name values(1, 'testing 1 2 3'); Query: insert into table_name values (2, 'test &#149;');

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (2)
As of 2024-04-26 02:54 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found