Given: a list of strings, in my case a list of filenames (log files from a simulation package), e.g.
@files = qw(model4run1 model2run1 model4run2 model1run1)
Output: the set of characters common to the begining of all the strings, in the above example "model"
I am having a mental block on this little snippet which, though working, simply does not look elegant to me yet. Something tells me it could be a simple map application, but my mental map interface seems to be read-only. I'd appreciate any and all suggestions, comments, or even golf.
my $posn = -1;
my $same = 1;
while(defined $same){
die if $posn > length $files[0];
my $chr = substr($files[0], ++$posn, 1);
for my $name (1..$#files) {
undef $same and last if(substr($files[$name], $posn, 1) ne $chr
or length $files[$name] < $posn);
}
}
print 'Prefix is "', substr($files[0], 0, $posn), '"';
--
I'd like to be able to assign to an luser
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.