-
Notifications
You must be signed in to change notification settings - Fork 13
Utilities TextUtils
Adam Bajguz edited this page Apr 5, 2021
·
3 revisions
TextUtils
contains simple text transformations:
-
AdjustNewLines
transforms line ending to appropriate format for the current operating system. -
ConvertTabsToSpaces
replaces tabs with spaces. By default two spaces are used in place of one tabulator. -
ToKebabCase
- converts string to Kebab case equivalent. -
UnescapeChar
- Converts escaped char sequence to char. The following escape sequences are supported: '\0', '\a', '\b', '\f', '\n', '\r', '\t', '\v', '\', and Unicode escape sequence e.g. \u006A)
Getting started
Advanced features
- Reporting errors
- Exception handling
- Metadata and startup message
- Graceful cancellation
- Dependency injection
- Middleware pipeline
- Environment variables
Utilities
Tests
Misc