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.
data1/data2/data3
すべてのセルを見つけてこの形式に置き換えて、次のようにするにはどうすればよいですか:
data2
常に MIDDLE 項が残ります。
[正規表現] を選択して検索/置換を実行し (「 」を参照More Options...)、検索ボックスに次の正規表現を入力します。
^.*/(\<[:alnum:]*\>)/.*$
そしてこれは置き換えとして:
$1
これは、すべてのセルに「dataX」部分が 3 つしかないことを前提としています。セルに data1/data2/data3/data4 が含まれている場合、その内容は data3 に置き換えられます。データではありません2-