使用 Notepad++ 我有以下文本:
Testing Here One
https://test.com/random
https://test.net/random
https://test.org/random
我希望它变成:
Testing Here One
https://test.com/random
Testing Here Two
https://test.net/random
Testing Here Three
https://test.org/random
链接总是在变化。
答案1
可能/部分解决方案:
- 找什么:
(https.+$\R)(?=https|^$)
- 用。。。来代替:
$1Testing Here\r\n
- 搜索方式:正则表达式
警告:您需要自己输入一,二,三等。