gpt4 book ai didi

android - 用填充位格式化字符串

转载 作者:行者123 更新时间:2023-11-29 15:47:37 32 4
gpt4 key购买 nike

我设置了一个编辑文本框并将最大长度设置为 10。当我将编辑文本复制到字符串 myTitles 时。我需要 myTiles 的长度为 10 个字符,并且不依赖于在编辑文本框中输入的内容。

      myTitles[0] = TitlesEdit.getText().toString();

编辑文本中填满了 ABCD,因此我需要在 ABCD 之后添加 6 个空格或占位符。我看过其他带有 str_pad 和 substr 的帖子,但没有成功

        myTitles[0] = str_pad(strTest, 0, 10);
myTitles[0] = substr(strTest,0, 10);

最佳答案

尝试类似的东西

public static String newString(String str) {
for (int i = str.length(); i <= 10; i++)
str += "*";
return str;
}

这将返回一个字符串,其中 * 替换为空字符串。

因此,例如,如果您的字符串是 abcde,则按如下方式调用 newString()

myTitles[0] = newString("abcde");

将返回 abcde***** 作为输出。

关于android - 用填充位格式化字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32101803/

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