Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: Death to Dot Star!

by Juerd (Abbot)
on Jan 01, 2002 at 06:07 UTC ( [id://135472]=note: print w/replies, xml ) Need Help??


in reply to Death to Dot Star!

If .* is being used to grab data, or in a regex that's just there to verify if something's correct, it is bad most of the time.

BUT... If s/// is used, .* often is the right choice.

s!^.*/!!


Please don't use [\s\S]* or [\d\D]* etc because someone told you .* is bad. You can use .* if you know it's right. (btw, . doesn't match \n unless /s is used, [\d\D] and friends do match \n).

Summary: if you know what it does, and it does what you want, .* is not bad.

2;0 juerd@ouranos:~$ perl -e'undef christmas' Segmentation fault 2;139 juerd@ouranos:~$

Replies are listed 'Best First'.

Log In?
Username:
Password:

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

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

    No recent polls found