On Tue, Dec 18, 2001 at 02:53:24PM +0000, Adam Witney wrote: > > Basically I want to strip out the contents of the first [], but this seems > to be matching from the outside in. Is there a way to make it look for the > first ] after the [ ?
Use a negated character class. m/\[(EC:[^\]]+)\]/ Ronald