gpt4 book ai didi

javascript - 在字符串中的空格前添加字母

转载 作者:行者123 更新时间:2023-12-03 08:53:30 25 4
gpt4 key购买 nike

我想使用常规 javascript 在每个单词的末尾添加一个字母(任何字母,比如说 p),但我不知道如何做到这一点。我已经有了这个不完整的代码。

var y = prompt("type a sentence here!"); //person types in sentence that will get changed//
function funkyfunction() {
for(var i=0;i<x.length;i++){
if(x.charAt(i)==" "){

}
}
};
funkyfunction(); //would call the function and print the result

最佳答案

您可以使用split ,它将在每次出现您提供的字符时分割一个字符串并返回一个数组。

因此“在此处键入一个句子”.split(“”)将返回[“Type”,“a”,“sentence”,“here”]

然后您可以迭代该数组并向每个元素的末尾添加一个字符!

然后使用 join将数组转换回字符串。确保您通过加入正确的分隔符!

关于javascript - 在字符串中的空格前添加字母,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32598661/

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