Hi there!
I really Need help!
In a nutshell: The output here:
print "start" . $type . "end";
is unequals the output here:
open (FH, 'out.txt');
print FH "start" . $type . "end";
close FH;
Some more details:
I receive an email via Mail::IMAPClient and store the message in one single scalar variable. Thereafter, use some RegEx to find several pieces of text.
The RegEx look like this:
my $type = "";
if ($msgString =~ m/Typ\s*:\s*(\w+)/i) {
$type = $1;
$type =~ s/\r\n//g;
}#if
print "start" . $type . "end";
This should give me:
start orange end
This works on a couple of text pieces I am after but on some the console output is screwed up and looks like this:
start range
As you can see, the first letter is missing and the final "end" string is not printed at all.
I even tried something like this and could believe my eyes:
print "start" . $type . "end\n";
print "$type\n";
print "xxxxxxxxxxxxxxxxxxxxxxx$type\n";
Console output:
xxxxxxxxxxxxxxxxxxxxxx
endrange
And keep in mind: When I write to a file, I get exactly what everbody would expect.
Any ideas?
PS: Perl 5.8.8 for MSWin32
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, 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, 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.
|
|