给定以下代码
public class TextBlock {
public static void main(String[] args) {
String indentedText = """
hello
indented
world
""";
System.out.println(indentedText);
}
}
输出如下(注意前导空格):
hello
indented
world
如何获得如下所示的字符串值(没有不必要的前导空格)?
hello
indented
world