|
Ignore White Spaces
The search algorithm ignores the
white spaces (space, non-breaking space, end-of-line characters,
tabulator). The following table shows possible strings that are
evaluated to the same string when spaces ignored:
| Original
string |
White-space
normalized |
function
MyFunction()
{
return "a";
} |
functionMyFunction(){return"a";} |
function
MyFunction()
{
return "a";
} |
function
MyFunction()
{
return "a";
} |
function
MyFunction()
{return "a";} |
| function
MyFunction(){return "a";} |
Ignoring the white spaces, if
selected, is applied to the find-what string, and to the data
read from the source file. It is not applied to the replace-with
string.
See also
Overview, Setting
It Up, Files, Strings, Normalize White Spaces
|