in reply to Re: Pattern Matching Problem
in thread Pattern Matching Problem

Ok, so this one catches a string of any length (including zero), using *. The string can be any character except "@" [^\@]. The matching expression on the left captures the non-@ string and puts it into the variable $1, which is then put between bold tags. Abigail-II has used exclamation points here to improve legibility.

--
Allolex