In the code editor of IntelliJ 2018, using either menu item:
Edit
> Find
> Find…
Edit
> Find
> Replace…
…how can I find invisible (non-printing) characters?
I am referring to characters such as:
Enabling "Regex" checkbox, you can use the full regex syntax. I was able to search for spaces with \u0020
and for LF with \x0a
.
\r
and \n
respectively.\uFFFF
, where FFFF is a hex Unicode character code.\xFF
, where FF is an ASCII hex code.