var oldString = "Test---NEWLINE------NEWLINE---This is another line.---NEWLINE---And another line.---NEWLINE------NEWLINE------NEWLINE---One more line.";
我只想要一個「--- NEWLINE ---」一次出現。如果有多個彼此相鄰,我希望它們被刪除。因此,新的字符串將是:刪除特定的重複字符串(但留下一個)
var newString = "Test---NEWLINE---This is another line.---NEWLINE---And another line.---NEWLINE---One more line.";
讓我們看看你先試了一下,努力吧。 –