I'm trying to set an apostrophe separator for the decimal format for a fractional number with a millionth place. I am getting a malformed pattern error.
String text = ".000'000";
DecimalFormat dformat = new DecimalFormat(text);
What is the correct string to use?