mvaline,
running your code through the debugger we see this
DB<1> x @lines
0 "\cM"
1 "\cM"
2 "\cM"
3 "\cM"
4 "VisionForum.com Stats for AvantGo\cM"
5 "\cM"
6 "\cM"
7 "\cM"
8 "\cM"
9 "\cM"
10 "VisionForum.com Stats\cM"
11 "2:00:43 PM - December 21, 2001\cM"
12 "\cM"
13 "Number of Shoppers: 93\cM"
14 "\cM"
15 "\cM"
16 "\cM"
17 "Today's Orders: 43\cM"
18 "Today's Gross Sales: \$4,435.63\cM"
19 "\cM"
20 "Average Order Size: \$103.15\cM"
21 "\cM"
22 "\cM"
23 "\cM"
24 "\cM"
so you'll need to chop off those Ctrl-M's one by one or
change your split to:
my @lines = split /\r\n/, $plain_text;
-derby
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.