void main() {
String name = "John Doe";
int age = 34;
String occupation = "gardener";
var msg = """
%s is %d years old
he is an %s
""".formatted(name, age, occupation);
System.out.println(msg);
}
void main() {
String val = "0";
String empty = " ";
int len = 30;
for (int i = 1; i < len; i += 2) {
System.out.printf("%s%s%n", empty.repeat(len - i / 2), val.repeat(i));
}
}
$ java Main.java
0
000
00000
0000000
000000000
00000000000
0000000000000
000000000000000
00000000000000000
0000000000000000000
000000000000000000000
00000000000000000000000
0000000000000000000000000
000000000000000000000000000
00000000000000000000000000000
They can be expressed with text blocks, which were standardized in Java 15.
String lyrics = "I cheated myself\n" +
"like I knew I would\n" +
"I told ya, I was trouble\n" +
"you know that I'm no good";
String lyrics2 = """
I cheated myself
like I knew I would
I told ya, I was trouble
you know that I'm no good""";
void main() {
System.out.println(lyrics);
System.out.println("--------------------------");
System.out.println(lyrics2);
}
The string is blank if it is empty or contains only white space.
import java.util.List;
void main() {
var data = List.of("sky", "\n\n", " ", "blue", "\t\t", "", "sky");
for (int i = 0; i < data.size(); i++) {
var e = data.get(i);
if (e.isBlank()) {
System.out.printf("element with index %d is blank%n", i);
} else {
System.out.println(data.get(i));
}
}
}
void main() {
var word1 = "Cherry";
var u_word1 = word1.toUpperCase();
var l_word1 = u_word1.toLowerCase();
System.out.println(u_word1);
System.out.println(l_word1);
var word2 = "Čerešňa";
var u_word2 = word2.toUpperCase();
var l_word2 = u_word2.toLowerCase();
System.out.println(u_word2);
System.out.println(l_word2);
}
void main() {
System.out.format("%d%n", 12263);
System.out.format("%o%n", 12263);
System.out.format("%x%n", 12263);
System.out.format("%e%n", 0.03452342263);
System.out.format("%d%%%n", 45);
}
import java.util.regex.Pattern;
import java.util.stream.Collectors;
void main() {
var phoneNumber = "202-555-0154";
var output = Pattern.compile("-")
.splitAsStream(phoneNumber)
.collect(Collectors.toList());
output.forEach(System.out::println);
}
import java.util.Arrays;
void main() {
var input = " wood, falcon\t, sky, forest\n";
var output = input.trim().split("\\s*,\\s*");
Arrays.stream(output).forEach(System.out::println);
}
import java.util.Arrays;
import java.util.regex.Pattern;
void main() {
var address = "127.0.0.1";
// String[] output = address.split("\\.");
String[] output = address.split(Pattern.quote("."));
Arrays.stream(output).forEach(part -> System.out.println(part));
}
void main() {
System.out.format("%+d%n", 553);
System.out.format("%010d%n", 553);
System.out.format("%10d%n", 553);
System.out.format("%-10d%n", 553);
System.out.format("%d%n", -553);
System.out.format("%(d%n", -553);
}
import java.nio.charset.StandardCharsets;
import java.util.Base64;
void main() {
byte[] data = { (byte) 0xc4, (byte) 0x8d, (byte) 0x65, (byte) 0x72,
(byte) 0x65, (byte) 0xc5, (byte) 0xa1, (byte) 0xc5, (byte) 0x88, (byte) 0x61 };
var text = new String(data, StandardCharsets.UTF_8);
System.out.println(text);
String str = "čerešňa";
byte[] bytes = str.getBytes(StandardCharsets.UTF_8);
var hexString = new StringBuilder();
for (byte b : bytes) {
String hex = Integer.toHexString(0xff & b);
if (hex.length() == 1) {
hexString.append('0');
}
hexString.append(STR."0x\{hex}, ");
}
int len = hexString.length();
hexString.delete(len-2, len-1); // delete last space and comma
System.out.println(hexString.toString());
}