我正在使用Shopify API通过将{{customer.phone}}作为结帐脚本来请求用户的电话号码,但是该请求为我提供了一个数字,其中数字之间有空格这个: 123456789
如何从此输出中删除空格?
答案 0 :(得分:0)
要修改字符串,您需要使用Shopify字符串过滤器。您可以在文档中查看更多详细信息:https://help.shopify.com/en/themes/liquid/filters/string-filters
以下是将返回不带空格的电话号码的代码:
{{ customer.phone | remove:" "}}
答案 1 :(得分:0)
例如,如果要进行转换:
{{ product.price_min| money_without_currency | remove:","}}
{{ product.price_min | money_without_currency | remove:"," | remove:"." | divided_by: 100}}