Apple and IBM, Why can't we just get, A LONG.
This isn't a conversion program although it is a start, please email me
with the solution that you come up with.

# chartab1.pl: A program to display character tables

$Column = 1;
$Out = '';
for ($i = 33; $i<=126; $i++) {
    $Out .= sprintf("%3s", $i) . "=" . chr($i) . "  ";
    if(($Column % 10) == 0) { $Out .= "\n" }
    $Column += 1;
}

$Out .= "\n\n";
$Column = 1;
for ($i = 33; $i<=126; $i++) {
    $Out .= chr($i). "=" . sprintf("%3s", $i) . "  ";
    if(($Column % 10) == 0) { $Out .= "\n" }
    $Column += 1;
}
print $Out;





----- Original Message ----- 
From: "Pedro A Reche Gallardo" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, April 03, 2002 3:58 PM
Subject: weird characters


> Hi, I have found that when I upload files from a Mac and Windows the
> return character (maybe other characters too) are replaced by something
> else. Does any one know how to avoid this? or alternatively how to
> translate those character into the unix equivalents
> Cheers
> 
> --
> *******************************************************************
> PEDRO A. RECHE , pHD            TL: 617 632 3824
> Dana-Farber Cancer Institute,   FX: 617 632 4569
> Harvard Medical School,         EM: [EMAIL PROTECTED]
> 44 Binney Street, D1510A,       EM: [EMAIL PROTECTED]
> Boston, MA 02115                URL: http://www.reche.org
> *******************************************************************
> 
> 
> 

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to