Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: Reading contents of file using regex

by GrandFather (Saint)
on Jan 31, 2006 at 10:52 UTC ( [id://526706]=note: print w/replies, xml ) Need Help??


in reply to Reading contents of file using regex

Sigh - use strict; use warnings;, post a complete sample that demonstrates the problem. As usual, here's a starting point:

use strict; use warnings; while (my $line = <DATA>) { ... } __DATA__ ...

Dodgy stuff in your first post:

$line=; # Just plain wrong! while ($line=~m/([123]?[.s]*[a-z\=.]+)/oi) # Where does $line get a va +lue? $t_book=~s/\l=([a-z]+)\/$1/ig; # The \/ is wrong! $t_book=~s/<(|/)(B|I|SC|U)>//ig; # The |/ is wrong (and why would you +want to capture it?)

DWIM is Perl's answer to Gödel

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (None)
    As of 2024-04-19 00:02 GMT
    Sections?
    Information?
    Find Nodes?
    Leftovers?
      Voting Booth?

      No recent polls found