On May 11, 2004, at 2:39 PM, Robert McBride wrote:
Thanks, I appreciate your reply.
That regualar expression will only match exactly one word character then one whitespace character
then another word character. (A word character is in the set of a-zA-Z0-9_)
\w\s\w has been working for me for some time with multiple characters in each word, such as "Leonard Sitongia" (it's a text input for a person's name). I just recently discovered that it is also working for "Leonard E Sitongia", which I didn't want. So, I assumed that \w mean word, not one character.
I'll try your suggestion.
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]