gpt4 book ai didi

Java:如何使用变量右对齐文本

转载 作者:行者123 更新时间:2023-12-02 10:59:37 25 4
gpt4 key购买 nike

我正在尝试在右侧对齐一些文本,如下所示:

String text = "whatever";
System.out.printf("%4s", text);

除了格式方案中的数字 4,我想使用整数变量,但我不知道如何做到这一点。请帮忙。

我尝试过的:

int spaceCount = 4;
String text = "whatever";
System.out.printf("%{spaceCount}s", text);

最佳答案

Java 并不出色;你必须建立老派的格式:

System.out.printf("%" + spaceCount + "s", text);

如果你想避免编码字符串连接,你可以格式化格式:

System.out.printf(String.format("%%%ds", spaceCount), text);

关于Java:如何使用变量右对齐文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51434622/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com