Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9298687
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T22:22:57+00:00 2026-06-18T22:22:57+00:00

I try to loop through attributes like this: <% student.account.attributes.each do |value| %> <td><%=

  • 0

I try to loop through attributes like this:

<% student.account.attributes.each do |value| %>
    <td><%= value %></td>
<% end %>

which is ok. But, how can I exclude certain attributes, from being looped? I used an array like [‘one’, ‘two’, ‘three’] where ‘one’, ‘two’, and ‘three’ are the values to exclude (or, if this is easier – include).

Edit:

As suggested by @Vysakh Sreenivasan I finally used this:

<% exclude_keys = ['one', 'two', 'three'] %>
<% student.account.attributes.each do |key, value| %>
  <td><%= value unless exclude_keys.include? key %></td>
<% end %>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T22:22:58+00:00Added an answer on June 18, 2026 at 10:22 pm

    if student.account.attributes is an array

    One way

    <% student.account.attributes.each do |value| %>
    <td><%= value unless ["one", "two", "three"].include? value %></td>
    <% end %>
    

    Another way

    <% exclude_values = ["one" , "two", "three"] %>
    <% (student.account.attributes - exclude_values).each do |value| %>
       <td> <%= value %> </td> 
    <% end %>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I can fix the below exception with a try-catch loop but I cannot understand
I've got some code to try and loop through LINQ results, but it doesn't
How can one loop through a generator? I thought about this way: gen =
when I try to loop through the children of a List component that has
I have a loop that works but not when I try and use it
No matter what I try I keep getting an infinite loop with this function:
public string GetSomething() { var a = String.Empty; try { // loop through the
I'll explain a little about this first but I'll try to keep it short
I've added a bunch of links to a div like this: $('#links').append('<a href=http://example.com/>Example</a>'); But
This is probably an easy one, but I can't figure it out. argh... C#

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.