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

Re: Is there a Limit on Matching .*

by Elian (Parson)
on Jul 15, 2003 at 03:38 UTC ( [id://274267]=note: print w/replies, xml ) Need Help??


in reply to Is there a Limit on Matching .*

Newlines, as has been pointed out, are probably your problem.

While the regex engine does have some limits to it, these are generally documented, and not small. The {n,m} style of repeat caps at 32K, for example, and there's a limit (IIRC) of 32K match variables, and there are some recursion depth issues, but it takes a lot to trip them. Normal regexes won't, generally speaking.

.* is generally limited by memory and in pathological cases runtime. As an example, perl -e '$foo = "x" x 6000000; $foo =~ /(x*)/; print length($1), "\n"' outputs a length of 6000000.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (2)
As of 2024-04-19 19:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found