This language bar is your friend. Select your favorite languages!
Select your favorite languages :
- Or search :
- C
- C++
- C#
- Dart
- Elixir
- Fortran
- Go
- JS
- Java
- Java
- Java
- Java
- Kotlin
- Lua
- PHP
- Pascal
- Pascal
- Pascal
- Perl
- Python
- Python
- Python
- Ruby
- Rust
- Rust
String f = "Our sun has {0,number} planets",
s = format(f, x);
"... MessageFormat provides a means to produce concatenated messages in a language-neutral way. Use this class to construct messages displayed for end users."
Formatter f = new Formatter();
f.format("Our sun has %s planets", x);
f.flush();
String s = f.toString();
programming-idioms.org