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)

スクリーンショット(前):

ここに画像の説明を入力してください

スクリーンショット(後):

ここに画像の説明を入力してください

関連情報