這裏是我的字符串:如何反轉模式的匹配結果?
Organization 2
[email protected] [email protected] [email protected] [email protected]
Organization 3
[email protected] [email protected]
而且這是我的模式:
/^.*[email protected][^ ]+|^.*$/gm
正如您在demo看到,模式匹配這樣的:
Organization 2
[email protected]
Organization 3
[email protected]
我的問題:怎麼可以我把它倒過來?我的意思是我要匹配這樣的:
[email protected] [email protected] [email protected]
[email protected]
我怎麼能這樣做?其實我可以寫一個新的(和完全不同)模式來搶預期結果,但我想知道,是「反轉模式的結果」可能嗎?
什麼東西阻止你扭轉字符串,然後只使用原始正則表達式?也許你可以使用某種逆序,但是重要的是什麼? –
@TimBiegeleisen該點匹配與模式不匹配的所有內容。 – Shafizadeh
Upvoted。也許@Wiktor會知道這個答案。 –