You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Analyzes the case of every token and optionally normalizes the token to lower case.

Configuration Parameters

  • normalize (boolean) - If true, all tokens are normalized to all lower case. (default = true)


Example Configuration
{
  "normalize":false
}

Flags

Lex-Item Flags:

  • ALL_LOWER_CASE - All of the characters in the token are lower-case characters.
  • ALL_UPPER_CASE - All of the characters in the token are upper-case characters (for example, acronyms).
  • TITLE_CASE - The first character is upper case, all of the other characters are lower case.
  • MIXED_CASE - Handles any mixed upper & lower case scenario not covered above.

Vertex Flags:

  • none


  • No labels