🌈 搜索
📅  最后修改于: 2022-03-11 15:02:41.008000             🧑  作者: Mango
// replaces space with '+' str = str.replace(/ /g, "+"); // or str = str.split(' ').join('+');