gpt4 book ai didi

java - 如何在java中的括号和单引号之间添加空格?

转载 作者:行者123 更新时间:2023-12-05 08:36:52 25 4
gpt4 key购买 nike

我正在尝试转换以下字符串

Insert into table01 values('abcd01','abcd02','abcd03')

Insert into table01 values( 'abcd01', 'abcd02', 'abcd03' )

我的代码:

package layout;
public class String02 {
public String Replace01(String testString) {
String string01 = "";
string01 = testString.replaceAll("\\('", "\\( ");
string01 = testString.replaceAll("\\)", " \\)");
string01 = testString.replaceAll(",", ", ");
return string01;
}
public static void main(String[] args) {
String02 app = new String02();
String testString = "Insert into table01 values('abcd01','abcd02','abcd03')";
String s1 = app.Replace01(testString);
System.out.println(s1);
}
}

最佳答案

    string01 = testString.replaceAll("\\('", "\\(  ");
string01 = testString.replaceAll("\\)", " \\)");
string01 = testString.replaceAll(",", ", ");

字符串是不可变的。您不能继续对原始字符串进行操作,因为每个 replaceAll() 语句都会返回一个新字符串。

代码应该是:

    string01 = testString.replaceAll("\\('", "\\(  '");
string01 = string01.replaceAll("\\)", " \\)");
string01 = string01.replaceAll(",", ", ");

此外,您的第一个 replaceAll(...) 语句不正确,因为您错过了替换字符串中的 '

关于java - 如何在java中的括号和单引号之间添加空格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67357810/

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