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 6150045
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T19:33:22+00:00 2026-05-23T19:33:22+00:00

How would you take a list and make it into a comma-separated string, with

  • 0

How would you take a list and make it into a comma-separated string, with “and” before the last element in the array?

Take something like:

list1 = ['a','b','c']

And turn it into this:

=> "a, b, and c"

I remember ruby had a method for this. I’ve searched however, and couldn’t find it.
Thanks for the help.

  • 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-23T19:33:22+00:00Added an answer on May 23, 2026 at 7:33 pm

    Try: [list[0...-1].join(", "), list.last].join(", and ").

    Edit: Rails has the method you were probably looking for, called to_sentence.

    In case you do not have Rails or do not wish to depend on Rails, open Array class and include the above method, like:

    class Array
      def join_all(join_with = ", ", connector = "and", last_comma = false)
        return self.to_s if self.empty? || self.size==1
        connector = join_with+connector if last_comma
        [list[0...-1].join(join_with), list.last].join(connector)
      end
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am wondering what other approaches you would take to do some simple string
I'm trying to create a custom JSP tag that would take an array object
How would I pass a list of values into a function, where the values
I have a list testList that contains a bunch of strings. I would like
It would take too long to explain why I need this, but I was
I would really appreciate if you would take a look at this piece of
What is the average time that it would take a complete novice, whose background
Are there any Code Generators that would take a well-formed XML document, and write
I wanted to write a function that would take an object and convert it
Is there any plugin for jQuery that would take an argument for the max

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.