Friday, October 17, 2025
HomeLanguagesJavaDecimalStyle withDecimalSeparator() method in Java with Example

DecimalStyle withDecimalSeparator() method in Java with Example

The withDecimalSeparator() method of java.time.format.DecimalStyle class in Java is used to set the character that is used to represent decimal separator for the Locale of this DecimalStyle. This method takes the character as the parameter and returns the DecimalStyle instance with the updated negative sign character.

Syntax:

public void withDecimalSeparator(char decimalSeparator)

Parameter: This method accepts decimalSeparator as a parameter which is the character that will be used to represent decimal separator for this DecimalStyle.

Return Value: This method returns the DecimalStyle instance with the updated negative sign character.

Exception: This method do not throw any Exception.

Program:




// Java program to demonstrate
// the above method
  
import java.time.format.*;
import java.util.*;
  
public class DecimalStyleDemo {
    public static void main(String[] args)
    {
  
        DecimalStyle ds
            = DecimalStyle.STANDARD;
  
        System.out.println(
            "Current Character"
            + " used for decimal separator: "
            + ds.getDecimalSeparator());
  
        char decimalSeparator = '*';
  
        ds = ds.withDecimalSeparator(
            decimalSeparator);
  
        System.out.println(
            "Updated Character "
            + "used for decimal separator: "
            + ds.getDecimalSeparator());
    }
}


Output:

Current Character used for decimal separator: .
Updated Character used for decimal separator: *

Reference: https://docs.oracle.com/javase/10/docs/api/java/time/format/DecimalStyle.html#withDecimalSeparator(char)

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS