我有一个字符串: “敏捷的棕色狐狸跳过懒惰的狗。”
我想使用 JavaScript(可能使用 jQuery)每n 个字符插入一个字符。例如我想打电话:
var s = "The quick brown fox jumps over the lazy dogs.";
var new_s = UpdateString("$",5);
// new_s should equal "The q$uick $brown$ fox $jumps$ over$ the $lazy $dogs.$"
目标是使用此函数将插入到长字符串中以允许它们换行。
也许有人知道更好的方法?