Remove Comma from String in Java

Learn about how to remove comma from String in java.

Remove comma from String in java

1. Using replace() method

You can use String’s replace() method to remove commas from String in java.

Here is syntax of replace method:

Output:

India China Bhutan

2. Using replaceAll() method

You can also use replaceAll() method to remove comma from String in java. It is similar to replace() method, but it takes regex as argument. You can see difference between replace and replaceAll over here.

Here is syntax of replaceAll method:

Output:

India China Bhutan

Remove Last Comma from String in Java

If you want to remove comma at the end of the string, then it is similar to removing last character from String in java.

1. Using substring() method

We can use String’s substring() method to remove last comma from String in java. Here we will use substring() method with 2 parameters.

Here,
start index: 0
end index:str.length()-1

Please note that this method is not thread safe and it will fail with empty or null String.
So here is java program to remove last character from String in java.

Output:

India, China, Bhutan

2. Using replaceAll() method

We can make use of Regular expression also to remove last character from String in java.

Output:

India, China, Bhutan

3. Using StringBuffer/StringBuilder

We can StringBuffer's deleteCharAt() to remove last comma from String in java.

Output:

India, China, Bhutan

4. Using StringUtil’s chop() method

You need to add below dependency to get Apache commons lang jar.

and then use StringUtils.chop() method to remove last comma from String in java,

Output:

India, China, Bhutan

Remove comma from number in java

You can use String’s replace() or replaceAll() method to remove comma from number in java.

Output:

Using replace: 1232000100
Using replaceAll: 1232000100

That’s all about how to remove comma from String in Java.

Was this post helpful?

Leave a Reply

Your email address will not be published. Required fields are marked *