A Value Converter can be used alongside other value converters and you can infinitely chain them using the | pipe separator.
${myString | toUppercase | removeCharacters:'&,%,-,+' | limitTo:25}
The above theoretical example firstly applies toUppercase which capitalizes our string. Then it app...