How do I remove blank elements from an array?

前端 未结 20 676
佛祖请我去吃肉
佛祖请我去吃肉 2020-11-30 16:43

I have the following array

cities = [\"Kathmandu\", \"Pokhara\", \"\", \"Dharan\", \"Butwal\"]

I want to remove blank elements from the ar

20条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-30 17:19

    another method:

    > ["a","b","c","","","f","g"].keep_if{|some| some.present?}
    => ["a","b","c","f","g"]
    

提交回复
热议问题