Remove spaces from a string
0
You can use the |replace
filter to remove spaces from a string
For example:
{{ record.measurement }}
outputs 10 mm
by adding the|replace
filter we get:
{{ record.measurement|replace({' ': '' }) }}
outputs 10mm
There are no comments yet
Be the first one to comment