Steven Rowe wrote: > \s*(?:\b|(?<=\S)(?=\s)|(?<=\s)(?=\S))\s* Oops, here's an improved version to cover the beginning- and end-of-string non-alphanumeric cases (E.g. "=some text-"):
\s*(?:\b|(?<=\S)(?=\s)|(?<=\s)(?=\S)|\A|\z)\s* --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]