Sublime Forum

Searching for Unicode char

#1

I have yet to find an editor that can find Unicode character U+ED06.

New to Sublime and it’s essential to locate offending char that don’t process.

Any help would be greatly appreciated.

Thanks,
Frank

0 Likes

#2

For this I would try something like this:

  1. Select Find > Find from the menu (or press the associated key)
  2. Make sure that the Regular Expression option is turned on (it looks like .*)
  3. Enter the regex \x{ed06} and press Enter

That will let you find the characters; you could use the replace functionality to change them to something else, delete them, etc.

As a contrived demonstration, I generated some lorem text and replaced a few spaces with this character. Here I’m just selecting all of the characters at once, which would allow me to press Space to put the file back to normal.

0 Likes

RegEx Fails to Match Unicode Escaped Range
#3

Very good!

Thanks,
Frank

0 Likes