>
> This is caused becuase the regular expression is searching for a
> 2 digit month (and all other fields for that matter). Here is much
> safer perl solution:
>
> perl -pe 's#(\d{1,2})/(\d{1,2})/(\d{1,4})#$3/$2/$1#g' < infile > outfile
>
> -Matt
That's perfect! Thank you very much. :-)
--
Charles Farinella
[EMAIL PROTECTED]
**********************************************************
To unsubscribe from this list, send mail to
[EMAIL PROTECTED] with the following text in the
*body* (*not* the subject line) of the letter:
unsubscribe gnhlug
**********************************************************