我有這個字符串:如何多次執行一個捕獲組?
var str = "some text start:anything can be here some other text";
這裏是預期的結果:
//=> some text start:anythingcanbehere some other text
換句話說,我試圖刪除這樣的字符串的特定範圍之間的所有空格。
而且這是我曾嘗試:
(start:)(?:(\S+)(\s+))(.*)(?= some)
It works爲好,但我應該執行幾次以達到預期的結果。我如何使用\1+
在我的正則表達式來運行它幾次?
使用'g'修改。 – Barmar
你的Javascript代碼在哪裏? – Barmar
@Barmar ['g'修飾符不起作用](https://regex101.com/r/wB9eR9/3),我在發佈我的問題之前對其進行了測試 – stack