如何删除单词Liquid-C(Shopify)之间的空格

时间:2018-11-18 18:56:14

标签: shopify liquid

我正在使用Shopify API通过将{{customer.phone}}作为结帐脚本来请求用户的电话号码,但是该请求为我提供了一个数字,其中数字之间有空格这个: 123456789

如何从此输出中删除空格?

2 个答案:

答案 0 :(得分:0)

要修改字符串,您需要使用Shopify字符串过滤器。您可以在文档中查看更多详细信息:https://help.shopify.com/en/themes/liquid/filters/string-filters

以下是将返回不带空格的电话号码的代码:

{{ customer.phone | remove:" "}}

答案 1 :(得分:0)

例如,如果要进行转换:

  • 1,000.00 USD至1000.00,您可以使用以下代码:

{{ product.price_min| money_without_currency | remove:","}}

  • 1,000.00 USD至1000,您可以使用以下代码:

{{ product.price_min | money_without_currency | remove:"," | remove:"." | divided_by: 100}}