in reply to Text to HTML convert.
I don't have any pre-dev'd solution for you.. however may I reccomend the following (just off the top of my head)
Just as a method for dropping characters that need escaping and changing to their HTML counterpart. I believe (don't know for sure obviously) that this is something like what you would need to do. I believe there is a module that has a http link regex that you can use. Also just as a feature thought. you could test the links you find to make sure they are valid (read: not broken)links..use strict; use warnings; #Just listing a few bad chars (I think hehe) for example my %escap_chars = ( '>' => '>', '<' => '<}; #Text for email would either be in array or scalar I'll presume my $email_text = 'Hi this is a math email 2 + 2 = 4. and 4 > 5'; #if scalar foreach my $key (keys(%escape_chars)) { $email_text =~ s/$key/$escape_chars{$key}/g; } # if each line of email is in an array foreach my $key (keys(%escape_chars)) { s/$key/$escape_chars{$key}/g for(@email_text); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Text to HTML convert.
by muntfish (Chaplain) on Oct 07, 2004 at 15:07 UTC | |
by jeffa (Bishop) on Oct 07, 2004 at 16:50 UTC |