There are CPAN modules to solve every one of your stated problems.
1.In a file how do I change the numeric values to word excluded the date format
Use Lingua::EN::Numbers.
use Lingua::EN::Numbers qw(num2en); while (<DATA>) { s/(\d+)/num2en $1/eg; print; } __DATA__ Too Small: 7 and 5. Too Big: 123345 Just right: 51
2.How to capitalize the first letter of each word found after AU: marker
Already asked and answered in it's own thread Make the first letter of each word capitalize. Just use Lingua::EN::NameCase.
3. there's a date format Oct 27, 2011 change to YYYY/MM/DD output should be 2011/10/27 I having a problem how to change the month in numeric form first then change the format as YYYY/MM/DD.
Use Date::Parse and POSIX:
use Date::Parse qw(strptime); use POSIX qw(strftime); my $str = 'Oct 27, 2011'; my $newdate = strftime "%Y/%m/%d", strptime $str; print "$newdate\n";

- Miller


In reply to Re: change number to word by wind
in thread change number to word by allison

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.