本文介绍了请问如何进一步分割对象中的字符串为JavaScript?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我现在有两个物体
obj1-> [ 'logo', 'FinTech startup', 'design' ]
obj2-> [ 'logo', 'tech startup', 'design' ]
将它们转变为最快的方法是什么
What is the fastest way to turn them into
obj1-> [ 'logo', 'FinTech', 'startup', 'design' ]
obj2-> [ 'logo', 'tech', 'startup', 'design' ]
请吗?
谢谢!
推荐答案
您可以使用 Array#join
和 Array#split
带空格.
You could use Array#join
and Array#split
with space.
var array1 = ['logo', 'FinTech startup', 'design'],
array2 = ['logo', 'tech startup', 'design'];
array1 = array1.join(' ').split(' ');
array2 = array2.join(' ').split(' ');
console.log(array1);
console.log(array2);
.as-console-wrapper { max-height: 100% !important; top: 0; }
这篇关于请问如何进一步分割对象中的字符串为JavaScript?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!