Java Format Parentheses
In this chapter you will learn:
- When to use Format Parentheses
- Syntax for Java Format Parentheses
- How to show negative numeric inside parentheses
Description
( gives negative numeric values parentheses.
Syntax
fmt.format("%(d", -100);
Example
The ( flag shows negative numeric inside parentheses, rather than with a leading -.
import java.util.Formatter;
/* w w w .j a v a 2s. c o m*/
public class Main {
public static void main(String args[]) {
Formatter fmt = new Formatter();
fmt.format("%(d", -100);
System.out.println(fmt);
}
}
The output:
Next chapter...
What you will learn in the next chapter:
Java Formatter Class
Java Format Specifier
Java Format Specifier Uppercase
Java Format Precision
Java Format Flags
Java Format Justifying Output
Java Format Negative and Positive
Java Format Line up Space
Java Format Comma
Java Format Alternate Conversion
Java Format Argument Index
Java Format date time
Java Format Date
Java Format Specifier
Java Format Specifier Uppercase
Java Format Precision
Java Format Flags
Java Format Justifying Output
Java Format Negative and Positive
Java Format Line up Space
Java Format Parentheses
Java Format Zero PaddingJava Format Comma
Java Format Alternate Conversion
Java Format Argument Index
Java Format date time
Java Format Date