“String -Format Java” Code-Antworten

formartted String java

String str = String.format( "Hello \n World \n my name is %s and i'm %d years old" , "Paul", 27);  
Pable Sorren

String -Format Java

/* Common Format Specifiers
 *
 * %s - String value
 * %d - Integer value
 * %f - Decimal value (floating point)
 * %x - Hextstring value from integer
 * 
 */
String.format("String with format specifiers here: %d %s %f %x", 10, "input", 2.7, 26); 
Maniacal Hamster

Ähnliche Antworten wie “String -Format Java”

Fragen ähnlich wie “String -Format Java”

Weitere verwandte Antworten zu “String -Format Java” auf Java

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen