Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re^10: Bind zone file search

by ranceh (Novice)
on Sep 26, 2012 at 20:15 UTC ( [id://995865]=note: print w/replies, xml ) Need Help??


in reply to Re^9: Bind zone file search
in thread Bind zone file search

I've been testing this for the last little bit and I think I found something else.

It wont match more than one entry per zone file. But there are more stanzas in each zone file.

When I googled this, I see that I should change the trailing end of a regex to /m for multiple matches, but when I do, I don't get any. What am I missing?

Replies are listed 'Best First'.
Re^11: Bind zone file search
by Kenosis (Priest) on Sep 26, 2012 at 20:56 UTC

    The m modifier will not help here. I (incorrectly) assumed that there was only one zone stanza per file. Processing multiple zone stanzas requires globally matching and preventing part of the regex from being 'greedy.' Try the following line:

    $hash{$1} = $2 while $data =~ /zone\s+"([^"]+)".+?masters\s+{[\s#\/]*([a-zA-Z0-9.- +]+)[\s#\/;]*}/sg;

    You'll note that: while has replaced if, there's a ? right after the + preceding masters, and the globally modifier is used.

    while is used to process all matches; the ? prevents the regex from being 'greedy,' so it doesn't start the match at the beginning of a zone stanza and end the match with the last stanza.

      This is really close, but not quite right.

      This regex is matching commented zone directives and if the comment is found after the real one is overwriting good answers for bad ones.

      I need to avoid commented stanzas. Since commented stanzas include comment characters prior to the match of zone, I think I need a way to ensure that matches on the word zone. Am I thinking correctly?

        By "commented," do you mean those containing either the "//" or "#" characters? Do you want to avoid all zone stanzas that contain those characters and use only those zone stanzas that don't contain those comment characters, i.e., "//" and "#"?

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (3)
As of 2024-03-28 17:17 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found