How to remove items from list of dictionary?

List of Dictionary - 3 items
Dictionary
  icon:"arrow-circle-o-left"(Text)
  action:26(Number (Integer))
Dictionary
  icon:"sitemap"(Text)
  action:25(Number (Integer))
Dictionary
  icon:"check-circle-o"(Text)
  action:28(Number (Integer))

As i want to remove second item from dictionary what should i do 

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Associate Developer
    in reply to Kiran

    a!localVariables(
    local!map: {
    { icon: "arrow-circle-o-left", action: 26 },
    { icon: "sitemap", action: 25 },

    { icon: "sitemap", action: 29 },
    { icon: "acheck-circle-o", action: 28 },
    { icon: "arrow-circle-o-left", action: 26 },
    { icon: "sitemap", action: 29 },

    { icon: "sitemap", action: 25 },
    { icon: "acheck-circle-o", action: 26 }
    ldrop(
    local!map,
    count(local!map)
    )},
    )

    we have a requirement where in the above code if we use that, it will delete all the rows. But we need to delete only specific rows.
    Example: { icon: "arrow-circle-o-left", action: 26 }, I want to delete all rows when value matches with action:26
    can you please help us with this requirement 

Children