2015-06-21 59 views
-2

海量地址:如何前使用正則表達式

[email protected]|password 
[email protected]|password 

使用正則表達式後:

smtp.gmail.com|[email protected]|password 
smtp.gmail.com|[email protected]|password 

什麼代碼如何使用正則表達式
請與演示質量添加smtp.gmail.com :(

+1

爲什麼正則表達式當你想附加一些東西? – Maroun

+0

,因爲我想添加質量 –

+0

或用\ r \ smtp.gmail.com重新替換\ r \ n |然後再貼在前面 –

回答

0

那麼,一般來說這不需要正則表達式,但如果你不編程,只想使用Notepad ++,只需使用這個:

搜索:^(.+)$ 替換:smtp.gmail.com|$1

+0

好的感謝工作 –