Notepad++ - 在符號之間複製文本

Notepad++ - 在符號之間複製文本

我需要你的幫助:我有這樣的文字:

</span>Seller: sunnybeauty04 (1,702) 98.6%<span
</span>Seller: 168tradeworld-au (2,357) 99.1%<span
</span>Seller: rna-e-mart (4) 100%<span
</span>Seller: ouyou2010 (1,186,025) 97%<span
</span>Seller: hzch-56 (52) 96.4%<span
</span>Seller: hlx_tech (16,592) 98%<span

我需要最後才能得到這段文字:

sunnybeauty04 
168tradeworld-au
rna-e-mart
ouyou2010 
hzch-56
hlx_tech

非常感謝所有的幫助者

答案1

假設您的問題中有一個拼字錯誤,並且所有行都類似於:

<span>Seller: sunnybeauty04 (1,702) 98.6%</span>

這樣就可以完成工作了。

  • Ctrl+H
  • 找什麼:<span>Seller: (\S+).+$
  • 用。$1
  • 查看 環繞
  • 查看 正規表示式
  • 取消選取 . matches newline
  • Replace all

解釋:

<span>Seller:       # literally
(\S+)               # group 1, 1 or more non space characters
.+                  # 1 or more any character but newline
$                   # end of line

替代品:

$1      # content of group 1 (i.e. the mac address)

截圖(之前):

在此輸入影像描述

截圖(之後):

在此輸入影像描述

相關內容