upcase

Makes each character in a string uppercase. It has no effect on strings which are already all uppercase.

Input

{{ "Parker Moore" | upcase }}

Output

PARKER MOORE

Input

{{ "APPLE" | upcase }}

Output

APPLE

© 2005, 2006 Tobias Luetke
Licensed under the MIT License.
https://shopify.github.io/liquid/filters/upcase/