Brethren

Looking yesterday at a listing of revision dates I saw

3-AUG-2007 8-AUG-2007 1-OCT-2007 1-OCT-2007-RevA 1 2
Hmm, that 1 and 2 look odd...

After sleuthing, I ran (something like)

($foo, $bar, $date) = qw(fooa bar7 1-OCT-2007-RevA); print "++$foo ++$bar ++$date\n"
and saw
foob bar8 1
Which puzzled me greatly until I found the auto-increment docs
The auto-increment operator has a little extra builtin magic to it. If you increment a variable that is numeric, or that has ever been used in a numeric context, you get a normal increment. If, however, the variable has been used in only string contexts since it was set, and has a value that is not the empty string and matches the pattern /^a-zA-Z*0-9*\z/ , the increment is done as a string, preserving each character within its range, with carry:
OK. Problem explained. But here I ask the Perl Monks for explanation. Why? Why limit the magic to strings that match the pattern? When is it ever better to return '1' than the incremented string?

throop

updated with minor cleanup

In reply to String increment - reasoning by throop

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.