Editpad Invisible Character

It utilizes the Scintilla editing component, which is generally good with Unicode but which does not enable non-printing or invisible characters like U+200B (zero-width space) and U+200C (zero-width non-joiner) to be displayed.

I want to add an invisible character to a text string. Dim myString As String myString = "United States" The following codes are not ok because the following codes separate the string in...

Editpad Invisible Character 2

Are there any invisible characters? I have checked Google for invisible characters and ended up with many answers but I'm not sure about those. Can someone on Stack Overflow tell me more about this?

Editpad Invisible Character 3

A recent problem* left me wondering whether there is a text editor out there that lets you see every single character of the file, even if they are invisible? Specifically, I'm not looking for hex

I'm not familiar with EditPad Pro, but --(?:.*\S)? might work. The idea is to match --, followed by 0 or more of any (non-newline) character (.), followed by a non-space character (\S). Because the "0 or more" part is greedy, it will try to match as much of the line as possible, thus making \S match the last non-blank character of the line. The ? makes the whole thing after -- optional. This ...

Editpad Invisible Character 5

The dot you see when you ask a text editor to show invisibles just happens to be what glyph the text editor chose to display spaces. It does not mean the character in question is U+00B7 ᴍɪᴅᴅʟᴇ ᴅᴏᴛ, which is definitely not invisible. In code, if you have it as a unichar, you can compare it to L'\x00A0'.

Editpad Invisible Character 6