gpt4 book ai didi

javascript - 如果字符放置在字符串(数组)中,则将字符串值分配给字符

转载 作者:行者123 更新时间:2023-11-28 08:38:37 25 4
gpt4 key购买 nike

我有:

var text = [];

text[0] = 'xyй';

text[0][0] = 'c';

alert(text[0][0]); // = 'xyй'

我认为有必要将字符串转换为数组吗?这是真的吗?

最佳答案

这里有两种方式: Live demo (click).

var text = [];
text[0] = 'xyй';
//break each string at each character into array
text[0] = text[0].split('');
//replace array item
text[0][0] = 'c';
//rejoin array into string
text[0] = text[0].join('');
console.log(text[0]);

var text = [];
text[0] = 'xyй';
//replace first character (character 0) with 'c'
text[0] = text[0].replace(text[0].charAt(0), 'c');
console.log(text[0]);

关于javascript - 如果字符放置在字符串(数组)中,则将字符串值分配给字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20775796/

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