Remove Unicode characters in a String

前端 未结 6 854
没有蜡笔的小新
没有蜡笔的小新 2020-12-11 06:56

How do I remove all special characters which don\'t fall under ASCII category in VBA?

These are some of the symbols which appear in my string.

<
6条回答
  •  抹茶落季
    2020-12-11 07:12

    What do you get when you write the following in the immediate window?

    ?Replace("ŸŸŸŸ", ChrW(376), "ale")
    

    I get: alealealeale

提交回复
热议问题