Last night I wrote a little program using the Geo::WeatherNOAA module to get the weather forecast for my region and dump it into MySQL. I was a happy little initiate. But I noticed that the strings that NOAA sends back end with a single equal sign.
I use
foreach $key (keys %$forecast) {
$fcast .= "$key: $forecast->{$key}<P>\n";
}
to make my forecast one string. I'd like to strip that = off though. I could
chomp it but the way my loop is written, my string actually ends with ' =
', so that isn't ideal.
Being a good little monk in training, I thought I'd try transliteration. I know how to change case by saying $email =~ tr/A-Z/a-z/; but how can I transliterate an equal sign into either a space (or delete it entirely)? I tried $fcast =~ tr/=//; and $fcast =~ tr/\=//; with no luck. I'm guessing a 'd' should be in there... maybe $fcast =~ tr/\=//d; but I couldn't seem to get a good result.
Any suggestions, oh wise ones?
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.