我的格式大约有100个单词
ABC
高清
EFT
FGG
ASD
等等......直到n个数字
我希望它像'abc','def','eft'等......
基本上我想在数据库中插入一行。
我真的很困惑。你们能用逻辑来帮助我吗?我有大量的名单不能手动。
答案 0 :(得分:1)
这是实现这一目标的众多方法之一
var source = document.querySelector("pre").textContent;
var items = source.split("\n"); //Split items by new line
items = items.map(function(item) { //Trim whitespace off of each item
return item.trim();
}).filter(function(item) { //Filter out empty items
return item;
});
var list = "'" + items.join("','") + "'"; //Join items together by single quotes and comas, and add single quotes at the beggining and the end
alert(list);