Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: Re: Re: Regex Misuse

by srawls (Friar)
on May 14, 2001 at 23:46 UTC ( [id://80316]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: Regex Misuse
in thread Regex Misuse

Well, what I said was that
m/.{$width}/
could be better written with substr, and still be readable. I have seen from replies to my post that unpack is better yet. I just made the $text =~ /\.txt$/ regex example up as I was writing the post, so it my not be the best, but the point I wanted to get at is if you don't need to match the whole string, then don't. For example:
$text =~ m/.*$endPat$/
can be better written (and still readable) as:
$text =~ m/$endPat$/
And as you have pointed out, the above code can be written this way (much less readable, I wouldn't recomend using this)
substr($text,0-length($endPat)) eq $endPat
On a last note, I never said it was a mistake not to use subst(), I just wanted to point out that in some cases it is better than using a regular expression.

The 15 year old, freshman programmer,
Stephen Rawls

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (3)
As of 2024-04-25 14:46 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found