Map all punctuaton characters to a specific character.


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

Syntax

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

Parameters

c
The character to map to

Implements

INetricsCharmap.mapPunctuation

Remarks

This is often used to equate hyphen, slash, period, comma, etc to the space character.

See Also