Hi David,
Yes, VS Editor can do Search/Replace on white-space characters. You will
need to use regular expressions, and search by the ascii representation of
the character.
To use regular expressions, check the "Use:" checkbox and select "Regular
Expressions" in the Find/Replace dialog boxes.
For example, if I want to replace all tabs (ascii hex code 9) with new
lines (ascii hex code a), I will select use regular expressions and enter
"\x09" into the "Find what:" combo box and "\x0a" into the "Replace with:"
combo box.
Regards,
Fiona
--------------------------------------------------------------------
This reply is provided AS IS, without warranty (express or implied).
--------------------
>From: " David N" <dq.ninh@netiq.com>
>Subject: VS Editor: Searching for white-space character
[quoted text clipped - 8 lines]
>NNTP-Posting-Host: pat-50.bel.netiq.com 65.219.170.50
>Path:
cpmsftngxa07.phx.gbl!cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!tk2msftngp13.
phx.gbl
>Xref: cpmsftngxa07.phx.gbl microsoft.public.vstudio.general:4846
>X-Tomcat-NG: microsoft.public.vstudio.general
[quoted text clipped - 5 lines]
>
>Thanks in advance.