Anything related to the reading of input that shall be compliant with a predefined format
Definition
Formatted input is anything related to the reading of input that shall be compliant with a predefined format.
Example:
- verifying/enforcing the format of an imput field
- recognizing formatting for interpretation of read data.
- use of dedicated library function (like scanf() in C)
Related topics
Formatted input is related to several other subjects:
- file-format when format has to comply with file formatting standards
- user-input when reading formetted-input provided by a user
- input-validation when it's only about enforcing compliance of input
- parsing when it's about more very complex formatting patterns and rules
- regex is a technique that often contributes to implement formatted input.
- tokenize when the format is used to splitting input in smaler tokens