Do you have information about the structure of the file name? If (I'm guessing) it is a combination of fields joined by underscores, and you know that the first part is the account number with leading zeros followed by two digits, then you should make use of this knowledge. For example,

  1. split along the underscores,
  2. take the first field,
  3. remove the leading zeroes and the last two digits
  4. and compare against the account number you want to find.
Even if this is slower than other approaches, it will avoid false matches. With respect to account numbers I would think that accuracy is more important than performance.

If you want you can encode this into a regex like /^0*(\d+)\d\d_/ (still based on my guess above).


In reply to Re: Search for account number in a file name by hdb
in thread Search for account number in a file name by Anonymous Monk

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.