Aptivi - Manual
ProjectsWebsiteBlog
Textify - Manual
Textify - Manual
  • Welcome
  • Breaking changes
  • Usage
    • How to use
      • Basic Features
        • Text Manipulation
        • Other Tools
      • Extra Features
        • Space Analysis and Correction
        • Unicode Analysis
        • Semantic Versioning
        • Name Generation
        • Word Management
        • Accessibility Tools
        • Figlet Text
        • Emoji Management
        • Wide Characters
    • How it works
      • Space Analyzer Internals
      • Unicode Analyzer Internals
      • Semantic Versioning Internals
      • Name Generation Internals
      • Word Selection Internals
      • Figlet Text Internals
  • Report an issue
  • Source code
  • API Reference
Powered by GitBook
On this page
Edit on GitHub
  1. Usage
  2. How to use
  3. Extra Features

Unicode Analysis

Any special characters?

Using this functionality that is available on Textify is very simple! Just use the Textify.Unicode namespace in any piece of code you want to use the library, as in: using Textify.Data.Analysis.Unicode;

Just use the UnicodeQuery class that contains:

  • QueryChar(char)

  • QueryChar(int)

  • QueryChar(char, UnicodeQueryType)

  • QueryChar(int, UnicodeQueryType)

You can control which database this feature uses using the UnicodeQueryType enumeration:

  • Simple: Simple Unicode characters without the Unihan characters and their info

  • Unihan: All Unihan Unicode characters with just the Unihan info

  • Full: All characters with their Unihan info

Last updated 1 year ago