in reply to Ascii to Chars in Perl

Or, it could be that the email addresses are in the source as &# characters - that is a common way of avoiding being picked up by a scraper finding email addresses to send spam. Use chr to translate.

Replies are listed 'Best First'.
Re^2: Ascii to Chars in Perl
by hemant.bhargava7 (Initiate) on Apr 25, 2009 at 11:09 UTC
    I Can use a chr function on a single Ascii number .. But i am having a string containing of Ascii characters .. Does that work too ..
      ... Does that work too

      Not directly... but there's split, various looping constructs, map, unpack, regexes, and what not in Perl :)

      What exactly does your string of ASCII values look like?

        I am having values like as .. Email:^M curieonc@rediffmail.com And want to convert it to a simple string .. like ..hemant.bhargava7@gmail.com .. Back to you ..
    A reply falls below the community's threshold of quality. You may see it by logging in.