Replace a string with space
-
Hi,
I need to Replace a string with space by CTRL+H.
How do I define a space in the “Replace with” box?Thanks
-
The obvious answer is to press the space bar, but that’s not what you expected, is it?
-
@amnon-אא-one said in Replace a string with space:
How do I define a space in the “Replace with” box?
Other than the already-suggested typing of a space (which works, so why not do it?), the character code sequences work in substitution strings when the search/replace is in regular expression mode, so since space is ASCII 32 (hex 20), that can be expressed as
\x20
in the search or replace boxes. -
Highlight and press space right ? is that not what your looking for?