First of all; thank you very much for your help. I did what you said and its very close but doing some weird stuff.
Here's what I have:
#!/usr/bin/perl
$work = "/var/tmp/work";
$input = "$work/domainlist.csv";
open (IN,"$input");
open (OUT,">domainlist.rules");
while (<IN>) {
chomp();
$domain = $_;
$dns = join '|', '', ( map { sprintf('%02d',length $_), $_ } split /\./, $domain ), '00', '';
print "$dns\n";
}
What I get is something like this:
|00|foobar|09|foodomain|04|com
|00|www|06|foobar|12|foobardomain|03|cc
If puts the zeros on the front instead of the end and doesn't give a count
then it counts the next sections correctly
then it always adds an extra count for the last part, maybe its counting a space or something
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.