我可以使用国际化 api 来格式化句子以包含“and”吗?最后一项之前的单词?

发布于 2025-01-10 20:29:52 字数 244 浏览 0 评论 0原文

我正在尝试创建一个字符串,其中我希望

  1. 在句子的最后一个单词之前有以下内容,
  2. 如果只有一个单词,则没有 and 。

for 和数组 ['john','harry', 'darren']

我期望下面的

例子 john harry anddaren

它甚至是国际化的有效案例还是我更好只是编程就可以做到这一点吗?

I am trying to create a string with where i want to have the following

  1. there should be and word before the last word in the sentence
  2. 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

迷迭香的记忆 2025-01-17 20:29:53

您可以创建一个函数,其主体将如下所示:


function myFunc (a) {
    if (a.length > 1) {
        const exceptLast = a.slice(0, -1)
        let last = a.slice(-1)
        last = ['and', ...last]
        return [...exceptLast, ...last].join(" ")
    }
    return a[0]
}

像这样测试它:


const da = ['b', 'cc', 'ddd']
const da1 = ['b']
const da2 = ['b']



console.log(myFunc(da))
console.log(myFunc(da1))
console.log(myFunc(da2))

You may create a function, and the body will look something like this:


function myFunc (a) {
    if (a.length > 1) {
        const exceptLast = a.slice(0, -1)
        let last = a.slice(-1)
        last = ['and', ...last]
        return [...exceptLast, ...last].join(" ")
    }
    return a[0]
}

Test it like this:


const da = ['b', 'cc', 'ddd']
const da1 = ['b']
const da2 = ['b']



console.log(myFunc(da))
console.log(myFunc(da1))
console.log(myFunc(da2))
猫七 2025-01-17 20:29:52

您正在寻找的是 Intl.ListFormat< /a>:

const names = ['john','harry', 'darren'];

const formatter = new Intl.ListFormat('en', { style: 'long', type: 'conjunction' });

console.log(formatter.format(names)); // prints john, harry, and darren

如果您想使用默认区域设置,请将 'en' 替换为 undefined

What you are looking for is Intl.ListFormat:

const names = ['john','harry', 'darren'];

const formatter = new Intl.ListFormat('en', { style: 'long', type: 'conjunction' });

console.log(formatter.format(names)); // prints john, harry, and darren

If you want to use the default locale, replace 'en' with undefined.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文