# 🎨 Format filters | Filter | Description | | ------ | -------------------------------------- | | `t` | Trim white-spaces from both sides. | | `v` | Convert to lowercase. | | `^` | Convert to uppercase. | | `i` | Convert non-ASCII characters to ASCII. | | `I` | Remove non-ASCII characters. | | `<Any other character than `:` can be also used as a delimiter. | | `>>M` | Right pad with mask `M`. | | `>N:M` | Right pad with `N` times repeated mask `M`.
Any other character than `:` can be also used as a delimiter. | Examples: | Input | Pattern | Output | | ---------- | ------------ | -------- | | `..a..b..` | `{t}` | `a..b` *(dots are white-spaces)* | | `aBčĎ` | `{v}` | `abčď` | | `aBčĎ` | `{^}` | `ABČĎ` | | `aBčĎ` | `{i}` | `aBcD` | | `aBčĎ` | `{I}` | `aB` | | `abc` | `{<<123456}` | `123abc` | | `abc` | `{>>123456}` | `abc456` | | `abc` | `{<3:XY}` | `XYXabc` | | `abc` | `{>3:XY}` | `abcYXY` |