我可以使用国际化 api 来格式化句子以包含“and”吗?最后一项之前的单词?
我正在尝试创建一个字符串,其中我希望
- 在句子的最后一个单词之前有以下内容,
- 如果只有一个单词,则没有 and 。
for 和数组 ['john','harry', 'darren']
我期望下面的
例子 john harry anddaren
它甚至是国际化的有效案例还是我更好只是编程就可以做到这一点吗?
I am trying to create a string with where i want to have the following
- there should be and word before the last word in the sentence
- if there is just one word then no and.
for and array ['john','harry', 'darren']
i expect below
e.g john harry and daren
is it even a valid case for internationalisation or am i better off just programming do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以创建一个函数,其主体将如下所示:
像这样测试它:
You may create a function, and the body will look something like this:
Test it like this:
您正在寻找的是 Intl.ListFormat< /a>:
如果您想使用默认区域设置,请将
'en'
替换为undefined
。What you are looking for is Intl.ListFormat:
If you want to use the default locale, replace
'en'
withundefined
.