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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T06:19:00+00:00 2026-05-26T06:19:00+00:00

I got String from the database which have multiple commas ( , ) .

  • 0

I got String from the database which have multiple commas (,) . I want to remove the last comma but I can’t really find a simple way of doing it.

What I have: kushalhs, mayurvm, narendrabz,

What I want: kushalhs, mayurvm, narendrabz

  • 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-26T06:19:00+00:00Added an answer on May 26, 2026 at 6:19 am

    To remove the ", " part which is immediately followed by end of string, you can do:

    str = str.replaceAll(", $", "");
    

    This handles the empty list (empty string) gracefully, as opposed to lastIndexOf / substring solutions which requires special treatment of such case.

    Example code:

    String str = "kushalhs, mayurvm, narendrabz, ";
    str = str.replaceAll(", $", "");
    System.out.println(str);  // prints "kushalhs, mayurvm, narendrabz"
    

    NOTE: Since there has been some comments and suggested edits about the ", $" part: The expression should match the trailing part that you want to remove.

    • If your input looks like "a,b,c,", use ",$".
    • If your input looks like "a, b, c, ", use ", $".
    • If your input looks like "a , b , c , ", use " , $".

    I think you get the point.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I got a string from parsing a XML file which looks like this: Fri,
I've got a compressed string of bytes coming out of a database which I
I've got a richtextbox, that I plan on saving to a database, which can
I have got a variable which contains function hierarchy like: string str= fun1(fun2(),fun3(fun4(fun5(34,33,'aa'),'value',fun6())) //
I've got a strange problem which I just can't figure out. I have currencies
I have an IList<string> named codes storing the code values for which I want
(LocalVariable)ABC.string(Name) = (IDataReader)dataReader.GetString(0); This name value is coming from database. What happening here is
I've got a string like foo (123) bar I want to retrieve all numbers
I've got a string Purchases 10384839,Purchases 10293900,Purchases 20101024 Can anyone help me with parsing
I have a whole slew of database access functions which assume a particular connection

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.