StringBuilder - 完全替换现有字符串。任何方法?

时间:2013-06-12 18:27:07

标签: java string replace stringbuilder overwrite

我在现有代码中看到String的用法有多个连接。声纳代码覆盖率建议使用StringBuilder。我正在更新代码以使用StringBuilder。但我想知道如何使用新字符串有效地覆盖现有内容。

在字符串表示中,如下所示:

String query = "select...";
if ( x ) {
    query = "select xyz...";
}

使用StringBuilder,我使用了这个:

 StringBuilder query = new StringBuilder("select...");
 if ( x ) {
     // I need to overwrite the existing stringbuilder content here
     query = new StringBuilder("Select xyz..");
        //or
     query = query.replace(,,,);
        //or
     //Anything better
 }

我希望有一种方法:

 query.replace("new string");

用新字符串覆盖整个现有字符串。但它不可用。

3 个答案:

答案 0 :(得分:8)

query.replace(0,query.length(), "new string");

应该工作。

答案 1 :(得分:0)

这是一个解决方案,而不是最优雅的解决方案,使用StringBuilder.replace(int start, int end, String str)
假设有两个条件:

  • 条件1:您想将“ ele ”替换为“ xxx
  • 条件2:您想将“ ... ”替换为“ yyy

请尝试以下

StringBuilder query = new StringBuilder("select...");
String x = "ele";

String term1 = "ele";
String newTerm1 = "xxx";
String term2 = "...";
String newTerm2 = "yyy";

if ( x.equals(term1) ) {
    int start = query.indexOf(term1);
    int end = start + term1.length();
    query.replace(start, end, newTerm1);

}
else if (x.equals(term2)){
    int start = query.indexOf(term2);
    int end = start + term2.length();
    query.replace(start, end, newTerm2);
}
System.out.println(query.toString());

答案 2 :(得分:0)

对于您的用例,以下内容似乎很完美:

private static final String SELECT_PRE = "Select";
private static final String SELECT_POST = "...";
StringBuilder query = new StringBuilder(SELECT_PREFIX+SELECT_POST);
if ( x ) {
     query = query.insert(SELECT_PREFIX.length(), " xyz");
}