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.
私は大きなテキスト ファイルを扱っており、行の 25 番目の文字の値に基づいて行を削除できるようにする必要があります。つまり、H、K、または Z に等しい場合です。文字と 3 つのコマンドを実行するか、または (さらに良い) 1 つのコマンドで 3 つすべてを実行しますか? どんな助けでも大歓迎です!
ex次のコマンドを試すことができます。
ex
:if match( "HKZ", strpart( getline("."), 24, 1) ) != -1 | delete | endif