Alphabet

An instance of the Alphabet class contains types of characters used for indexing. For detailed information on the types of characters, see the Character types page.

The getCharacterType method is used to get the type of a specific character.

The getCount method returns the number of characters of a type other than CharacterType.Separator.

To set the type of characters in the alphabet, use the setRange method.

To set the CharacterType.Separator type for all characters in the alphabet, use the clear method.

To export types of all characters to a file, use the exportDictionary method.

To import types of all characters from a file, use the importDictionary method.

The following example demonstrates the use of methods of the alphabet.

String indexFolder = "c:\\MyIndex\\";
 
// Creating or opening an index from the specified folder
Index index = new Index(indexFolder);

// Export the alphabet to a file
index.getDictionaries().getAlphabet().exportDictionary("C:\\Alphabet.dat");
 
if (index.getDictionaries().getAlphabet().getCount() > 0) {
    // Setting a type of all characters to Separator
    index.getDictionaries().getAlphabet().clear();
}
 
// Import the alphabet from a file
index.getDictionaries().getAlphabet().importDictionary("C:\\Alphabet.dat");
 
if (index.getDictionaries().getAlphabet().getCharacterType('-') != CharacterType.Blended) {
    // Setting a type of hyphen character to Blended
    index.getDictionaries().getAlphabet().setRange(new char[] { '-' }, CharacterType.Blended);
}

More resources

GitHub examples

You may easily run the code from documentation articles and see the features in action in our GitHub examples:

Free online document search App

Along with full featured .NET library we provide simple, but powerful free Apps.

You are welcome to search over your PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX and more with our free online Free Online Document Search App.