gpt4 book ai didi

javascript - chop 具有多个字符的字符串而不 chop 单词

转载 作者:行者123 更新时间:2023-11-28 14:31:08 27 4
gpt4 key购买 nike

我想 chop 一个具有字符限制的字符串,并且最后一个字符应该是空格的条件(这样我就没有被 chop 的单词)

示例:

var sentence = "The string that I want to truncate!";
sentence.methodToTruncate(14); // 14 is the limit of max characters
console.log("Truncated result : " + sentence); // Truncated result : The string

最佳答案

您可以使用下面的 chop 单行:

const sentence = "The string that I want to truncate!";

const truncate = (str, len) => str.substring(0, (str + ' ').lastIndexOf(' ', len));

console.log(truncate(sentence, 14));

关于javascript - chop 具有多个字符的字符串而不 chop 单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51542503/

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