How to convert a string to an integer in Shopify liquid
After processing data, may be you will probably get an integer value but it’s string data type. If you want to compare this value with a numer, you must convert this value from a string to an integer
To convert a string to a number just add 0 to the variable:
1 | {% assign number = number | plus:0 %} |
Not super elegant but it works! And now you can use this value to do anything. It’s an integer number.