Have anyone experienced the problem like this one? Look at the script and string I have in $msg:
#!/usr/bin/perl -w
use strict;
my $msg = '1324^@^@^@';
my $lng = length($msg);
print "The length of the message is: $lng\n";
print "This is the message itself: [$msg]\n";
When I execute it, I get the following:
cdruser1@cdr1:~/cdr/scripts> ./test1.pl
The length of the message is: 7
This is the message itself: [1324]
The problem is with those characters ^@^@^@. When I print those characters, I can't see nothing! However, the length, as you see, includes them. What I really want to do is to get rid of them from my string, but I am not sure what to use in substitution command.
By the way, those characters in Windows are printed as spaces.
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.