#!/usr/bin/perl $thetext = "go to [LINK]http://www.ultrashock.com/[/link]"; $thetext =~ s/\[LINK\](.*?)\[\/LINK\]/<a href="$1">$1<\/a>/gi; print $thetext."\n";
#!/usr/bin/perl $thetext = "go to ultrashock!"; $thetext =~ s/\(.*?)\[\/LINK\]/<a href="$1">$2<\/a>/gi; print $thetext."\n";
#!/usr/bin/perl $thetext = "go to ultrashock! or [LINK]http://www.identd.org/
"; $thetext =~ s/\[link=(.*?)\](.*?)\[\/LINK\]/<a href="$1">$2<\/a>/gi; $thetext =~ s/\[LINK\](.*?)\[\/LINK\]/<a href="$1">$1<\/a>/gi; print $thetext."\n";