lax,
Using the following code and your string I get 160 characters output:
#!/usr/bin/perl
use strict;
use warnings;
my $string="#22 2006-05-02 12:12:35 hjjjdddddd Advisory.No action requ
+ired. event-101 severe is the name of the alarm but the way it is dis
+palyed cannot be digested at all 12121212121122";
print substr($string,0,160);
<code>
Output:
<code>
#22 2006-05-02 12:12:35 hjjjdddddd Advisory.No action required. event-
+101 severe is the name of the alarm but the way it is dispalyed canno
+t be digested at all
Can you please post the complete code you are using?
Update: Fixed typo, print substr($string,0,16); changed to print substr($string,0,160);
Martin
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.