gpt4 book ai didi

javascript - 在 html 中显示短语的前 4 个单词

转载 作者:行者123 更新时间:2023-11-28 06:04:31 25 4
gpt4 key购买 nike

我有一个很长的短语,我想显示前 4 个单词。

示例:

The style of this paper is a combination of an external stylesheet, and internal style.

变成这样:

这...的风格

最佳答案

您可以为此使用正则表达式。它取前四个词并添加一些点,

var text = 'The style of this paper is a combination of an external stylesheet, and internal style.';
document.write(text.replace(/^((\w*\W*){0,4}).*/, '$1...'));

关于javascript - 在 html 中显示短语的前 4 个单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36543643/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com