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.
ほとんどのスクリプト言語では、文字列を区切り記号なしで固定長の部分文字列に分割するのは簡単です。たとえば、ルビーで私ができること
'acgatgctgc'.scan(/.{3}/).join(' ') #=>"acg atg ctg"
vimスクリプトを使用してこれを行うことと同等のものは何ですか? またはvimで単一のコマンドで同じことを達成しますか?
編集注: Ruby が最後の c を削除することに注意してください