J
John Nurick
Hi Ken,
One simple way is to use the rgxReplace() function at
http://www.j.nurick.dial.pipex.com/Code/index.htm
This
rgxreplace("Lewis, County of", "[\W]", "")
deletes all "non-word" characters, i.e. everything except alphanumeric
characters and underscores. If you want to lose the underscores too, use
[_\W]
One simple way is to use the rgxReplace() function at
http://www.j.nurick.dial.pipex.com/Code/index.htm
This
rgxreplace("Lewis, County of", "[\W]", "")
deletes all "non-word" characters, i.e. everything except alphanumeric
characters and underscores. If you want to lose the underscores too, use
[_\W]