に#の後の行のすべてのテキストを除去するために、私はgvimを内のテキストを以下に「#」(R言語のコメント)が発生した後の行のすべてのテキストを削除する必要があります。正規表現gvimを
This line should stay.
# one (after initial spaces) - delete this line
#two (after initial tab) - delete this line
# three (no initial space) - delete this line
one two #three (after initial words) - delete text after hash.
This line should also stay.
I以下を試しましたが、これらは機能していません:
:%s/#.$//g
:%s/\v#.$//g
:%s/\#.$//g
:%s/\v\#.$//g
私は推定します。改行以外のものを示します。問題はどこでどのように修正できますか?ありがとう。
限定子が必要です: ':%s /#.*// g' –
最初の3回の間は、完全な行が削除されます。 – rnso