パーソナルツール

ディクショナリのフィルタリング

作者: 小見 拓 最終変更 2012年01月08日 12時08分

ディクショナリのフィルタリング

  • ディクショナリの各キーは「v:key」に、各値は「v:val」に入る。
:let var_dict = { "one":"item 1", "two":"item 2", "three":"item 3", "four":"item 4" }

:call filter(var_dict, "v:key =~ '^t'")
:echo var_dict
"# => {'two': 'item 2', 'three': 'item 3'}
ドキュメントアクション
コメント
blog comments powered by Disqus