Map all whitespace characters to a specific character.


Namespace: NetricsServerInterface
Assembly: NetricsServerInterface (in NetricsServerInterface.dll)

Syntax

Visual Basic (Declaration)
Public Sub mapWhitespace( _ 
   ByVal c As Char _ 
) _
    Implements INetricsCharmap.mapWhitespace
C#
public void mapWhitespace(
   char c
)
C++
public:
 void mapWhitespace(
   wchar_t c
) sealed 
J#
public void mapWhitespace(
   char c
)
JScript
public  function mapWhitespace(
   c : char
)

Parameters

c
The character to map to

Implements

INetricsCharmap.mapWhitespace

Remarks

This is often used to equate tabs, non-breaking page spaces, etc to the space character.

Note: mapping whitespace to any character other than the standard blank character will significantly alter the scoring of data as all data will be considered a single token.

See Also