Returns an array of characters that make up the suffix of length 'len' for the currently matched token. This is used to build up the matched string for use in actions in the case of MORE. A simple and inefficient implementation of this is as follows : { String t = GetImage(); return t.substring(t.length() - len, t.length()).toCharArray(); }

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

Syntax

C#
char[] GetSuffix(
	int len
)
Visual Basic
Function GetSuffix ( _
	len As Integer _
) As Char()
Visual C++
array<wchar_t>^ GetSuffix(
	int len
)

Parameters

len
Type: System..::..Int32

[Missing <param name="len"/> documentation for "M:Lucene.Net.QueryParsers.CharStream.GetSuffix(System.Int32)"]

Return Value

[Missing <returns> documentation for "M:Lucene.Net.QueryParsers.CharStream.GetSuffix(System.Int32)"]

See Also