Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Notepad++ または同様の機能を備えたエディターで、数字を含む単語を簡単に検索できますか? たとえば、数字が「~」で示されているとすると、次のテキストで「abc~」を検索すると:
abc4 abc not a number
私は単に最初の言葉を得るでしょう。
「正規表現」検索モードを使用します。数値のグループを検索するだけの場合は、 を使用します\d+。1 つ以上の数字を含む単語全体を選択する場合は、 を使用します\w*\d+\w*。
\d+
\w*\d+\w*
[検索] ダイアログ ボックスに次の正規表現を入力します (正規表現オプションを選択します)。
\w*\d\w*