-
Notifications
You must be signed in to change notification settings - Fork 96
Home
Egor Taflanidi edited this page Feb 4, 2019
·
14 revisions
Throughout this Wiki we use a custom set of terms:
- text field — a field with our library's text field listener attached;
- input — everything user writes or pastes into the text field;
- mask — a pattern, which defines how to format the input;
- output — everything user actually sees inside the text field;
- extracted value — a string of valuable characters distilled from the input;
- complete or value completeness — a boolean flag indicating that the extracted value is complete;
- compiler — an internal entity, which translates masks into the state machine graphs.
The Wiki contains documentation related to:
- getting started: throw together a simple project in order to get familiar with the basics, given you've already installed the library;
-
masks: learn about the
Mask
objects; - mask syntax: learn how to compose your own patterns;