這是一個嘰嘰喳喳,我需要轉換字符串數組,該怎麼辦?做,因爲我需要通過單獨的每個元素進行迭代...如何轉換字符串數組?
var twitter = 'RT Informacion sobre algo en comun @opmeitle #demodelor union J, http://bit.ly/a12, [email protected]';
我需要類似的東西。
var result = ['RT, Informacion, sobre, algo, en, comun, @opmeitle, #demodelor, union, J, http://bit.ly/a12, [email protected]']
for (i in result) { console.log(result[i]) } // output >>
RT
Informacion
sobre
...
使用JavaScript或的NodeJS
你想要什麼? – null
將twitt轉換爲數組。 – opmeitle
你想分解成單詞嗎? – wwww