I have done quite a bit of research and can not seem to find any answers. What I need to do is the following:
REPLACE all characters in a MSSQL column which are non ascii characters with their ascii equivalents. For example:
ë --> e
ï --> i
ñ --> n
I have read through the following which may seem similar but are, instead of replacing, eliminating/removing these characters (which is not ideal).
How do I remove extended ASCII characters from a string in T-SQL?
Purpose of [^\x20-\x7E] in regular expressions
http://jamesveitch.com/t-sql-function-replace-non-printable-ascii-chars/
http://www.sqlservercentral.com/Forums/Topic853088-149-1.aspx
Thanks to @Eric below and the selected answer.
(Helpful reference: How to remove accents and all chars <> a..z in sql-server?)