From: Zach Dennis Date: 2005-01-19T02:40:04+09:00 Subject: Re: My regexp stupidity needs assistance before loose all my hair! Bertram Scharpf wrote: > Hi, > > Am Dienstag, 18. Jan 2005, 06:26:35 +0900 schrieb Douglas Livingstone: > >>I think that this is what you need: /\[[\w]+\]/ > > > What are the square brackets for? As far as I see /\[\w+\]/ > does, too. > Almost forgot to hit up your question... /\[[\w]+\]/ and /\[\w+\]/ are basically the same since \w covers a whole character class of word characters. Zach