Text removal
Basic operations for removing specified characters from text:
- white spaces:
\s+
- new lines:
\n|\r
- non-printable characters:
[\x00-\x1F]|\x7F
- basic left and right trimming
- non characters (leaving only characters):
[^\x21-\x7E]
Only ASCII table is supported.