Converts characters above ASCII to their ASCII equivalents. For example, accents are removed from accented characters.

Namespace: Lucene.Net.Analysis
Assembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1

Syntax

C#
public void FoldToASCII(
	char[] input,
	int length
)
Visual Basic
Public Sub FoldToASCII ( _
	input As Char(), _
	length As Integer _
)
Visual C++
public:
void FoldToASCII(
	array<wchar_t>^ input, 
	int length
)

Parameters

input
Type: array<System..::..Char>[]()[][]
The string to fold
length
Type: System..::..Int32
The number of characters in the input string

See Also