divided_by
Divides a number by another number.
The result is rounded down to the nearest integer (that is, the floor) if the divisor is an integer.
Input
{{ 16 | divided_by: 4 }}
{{ 5 | divided_by: 3 }}
Output
4
1
Controlling rounding
divided_by
produces a result of the same type as the divisor — that is, if you divide by an integer, the result will be an integer. If you divide by a float (a number with a decimal in it), the result will be a float.
Input
{{ 20 | divided_by: 7 }}
{{ 20 | divided_by: 7.0 }}
Output
2
2.857142857142857
Changing variable types
You might want to use a variable as a divisor, in which case you can’t simply add .0
to convert it to a float. In these cases, you can assign
a version of your variable converted to a float using the times
filter to multiply the variable by 1.0
.
In this example, when we divide by a variable that contains an integer, we get an integer result. When we convert the variable to float and divide by the float instead, we get a float result.
Input
{% assign my_integer = 7 %} {{ 20 | divided_by: my_integer }}
{% assign my_float = my_integer | times: 1.0 %}
{{ 20 | divided_by: my_float }}
Output
2
2.857142857142857