我有类似以下内容:
int i = 3; String someNum = "123";
我想i在someNum字符串后附加“ 0” 。是否有某种方法可以像Python一样乘以字符串来重复它?
所以我可以去:
someNum = sumNum + ("0" * 3);
或类似的东西?
在这种情况下,我的最终结果将是:
“ 123000”。
普通Java中不依赖项的最简单方法是以下一种代码:
new String(new char[generation]).replace("\0", "-")
将生成替换为重复次数,并将“-”替换为要重复的字符串(或char)。
所有这一切都是创建一个包含n个0x00字符的空字符串,然后由内置的String#replace方法执行其余操作。
以下是要复制和粘贴的示例:
public static String repeat(int count, String with) { return new String(new char[count]).replace("\0", with); } public static String repeat(int count) { return repeat(count, " "); } public static void main(String[] args) { for (int n = 0; n < 10; n++) { System.out.println(repeat(n) + " Hello"); } for (int n = 0; n < 10; n++) { System.out.println(repeat(n, ":-) ") + " Hello"); } }