gpt4 book ai didi

java - 将空格移到字符串的前面?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:06:11 24 4
gpt4 key购买 nike

我们如何使用 Java 将 String 的所有空格移动到前面?

Input string  = "move these spaces to beginning"

Output string = " movethesespacestobeginning"

最佳答案

试试这个:

String input = "move these spaces to beginning";
int count = input.length() - input.replace(" ", "").length();
String output = input.replace(" ", "");
for (int i=0; i<count; i++) output = " " + output;
System.out.print(output);

关于java - 将空格移到字符串的前面?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36660210/

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