> From: Alex Brelsfoard > Sent: Friday, February 25, 2005 4:11 PM > > $message =~ s/\[link .*?\]/<a href=\"$1\">/gs;
Try putting parens around the argument: $message =~ s/\[link (.*?)\]/<a href=\"$1\">/gs; -Nilanjan _______________________________________________ Boston-pm mailing list [email protected] http://mail.pm.org/mailman/listinfo/boston-pm

