Apache Lucene.Net 2.4.0 Class Library API

CharStream.GetSuffix Method 

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(); }

char[] GetSuffix(
   int len
);

See Also

CharStream Interface | Lucene.Net.QueryParsers Namespace