chrismassey
Programmer
Hello,
I am trying to search for a particular string and replace it with an image. Basically if a user types in a smiley e.g.
, its replaced with the gif image of the smiley. On test, nothing at all is printed from the text file storing the message data, not even non smiley strings. Below is the section of code I used which seems to be in a slight bit of a mess therefore there may be a more appropriate way to do this. Bare in mind that smileys may appear anywhere in the message therefore the code needs to be able to find one anywhere within and evaluate all occurences...
Thank you
I am trying to search for a particular string and replace it with an image. Basically if a user types in a smiley e.g.
Code:
my $angry = 'Smileys/angry.gif'; my $angryf = '\]\:\(';
my $cry = 'Smileys/cry.gif'; my $cryf = '\:\'\(';
my $confused = 'Smileys/confused.gif'; my $confusedf = '\:\s';
my $evilgrin = 'Smileys/evilgrin.gif'; my $evilgrinf = '\]\:\)';
my $happy = 'Smileys/happy.gif'; my $happyf = '\:\)';
my $sad = 'Smileys/sad.gif'; my $sadf = '\:\(';
my $smile = 'Smileys/smile.gif'; my $smilef = '\:\d';
my $tongue = 'Smileys/tongue.gif'; my $tonguef = '\:\p';
my $wink = 'Smileys/wink.gif'; my $winkf = '\;\)';
my $img_src1 = '\<img src\=\"';
my $img_src2 = '\"\>';
$message[2] =~ s/$angryf/$img_src1$angryf$img_src2/ig;
$message[2] =~ s/$cryf/$img_src1$cry$img_src2/ig;
$message[2] =~ s/$confusedf/$img_src1$confusedf$img_src2/ig;
$message[2] =~ s/$evilgrinf/$img_src1$evilgrinf$img_src2/ig;
$message[2] =~ s/$happyf/$img_src1$happyf$img_src2/ig;
$message[2] =~ s/$sadf/$img_src1$sadf$img_src2/ig;
$message[2] =~ s/$smilef/$img_src1$smilef$img_src2/ig;
$message[2] =~ s/$tonguef/$img_src1$tonguef$img_src2/ig;
$message[2] =~ s/$winkf/$img_src1$winkf$img_src2/ig;
Thank you