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

  • SEARCH
  • Home
  • 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 6812033
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T20:24:02+00:00 2026-05-26T20:24:02+00:00

Class person{ int name; }; I have a scenario here in which i’m parsing

  • 0
Class person{

  int name;

};

I have a scenario here in which i’m parsing a set of Person objects from an arraylist.

I need to concatenate all the name(member variable) for the objects in the arraylist seperated by an “or”.

I have tried some conventional ways of adding an “or” at the end of each concatenation and
removing one “or” from the end of the string.
I know this is no good programming.

  • 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-05-26T20:24:02+00:00Added an answer on May 26, 2026 at 8:24 pm

    this is indeed the way to go. I assume you have an arraylist since you tagged it, you can use:

    public static String join(Collection data, String delimiter) {
        final StringBuffer buffer = new StringBuffer();
        final Iterator iter = data.iterator();
        while (iter.hasNext()) {
            buffer.append(iter.next());
            if (iter.hasNext()) {
                buffer.append(delimiter);
            }
        }
        return buffer.toString();
    }
    
    // in your code:
    join(personList, " or ");
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Suppose i have class Person { public int Id {get;set;} public string Name {get;set;}
Lets say I have class Person { public Person(int age, string name) { Age
Say i have the following: public class Person{ public int ID {get; set;} public
For example i have public class Person { public int Id {get;set;} [Required()] public
I have a class public class Person { public int PersonId { get; set;
I have the following classes: class Person { public string Name { get; set;
Say I have public class Person { int id; String regDate; String name; String
I have a class call Person: public class Person { public int id{get;set;} public
For example I have a simple class like public class Person{ public int Age
I've got two theoretical domain objects: public class Person { public virtual int Id

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.