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.
値がパイプ記号で区切られたテキスト ファイルがあります|
|
data|baloney|198237423984732|cheese|more cheese|98746464
最初の 3 つの列を削除したいので、たとえば
cheese|more cheese|98746464
この正規表現を置き換えます:
^([^|]*\|){3}
空の文字列に。
これにより、例に従って最後の 3 つの列が抽出されます。
([^|]*\|){2}[^|]*$
実際の動作はこちらでご覧ください。