Format decimal as 'abc'# in Java

Description

The following code shows how to format decimal as 'abc'#.

Example


/*  w ww. j  ava2s .  c  om*/
import java.text.DecimalFormat;
import java.text.Format;

public class Main {
  public static void main(String[] argv) throws Exception {

    Format formatter = new DecimalFormat("'abc'#");
    String s = formatter.format(-1234.567);
    System.out.println(s);
  }
}

The code above generates the following result.





















Home »
  Java Tutorial »
    Data Format »




Java Formatter
Java Number Formatter