Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to execute a query like select ID from "xyz_DB"."test" where user in ('a','b')

so the corresponding code is like

String s="(";
for(String user:selUsers){
    s+= " ' " + user + " ', ";
}
s+=")";

Select ID from test where userId in s;

The following code is forming the value of s as ('a','b',) i want to remove the comma after the end of array how to do this ?

share|improve this question

10 Answers

Here is one way to do this:

String s = "(";
boolean first = true;
for(String user : selUsers){
    if (first) {
        first = false;
    } else {
        s += ", ";
    }
    s += " ' " + user + " '";
}
s += ")";

But it is more efficient to use a StringBuilder to assemble a String if there is looping involved.

StringBuilder sb = new StringBuilder("(");
boolean first = true;
for(String user : selUsers){
    if (first) {
        first = false;
    } else {
        sb.append(", ");
    }
    sb.append(" ' ").append(user).append(" '");
}
sb.append(")");
String s = sb.toString();
share|improve this answer

This does the trick.

String s = "";
for(String user : selUsers)
    s += ", '" + user + "'";

if (selUsers.size() > 0)
    s = s.substring(2);

s = "(" + s + ")";

But, a few pointers:

  • When concatenating strings like this, you are advised to work with StringBuilder and append.
  • If this is part of an SQL-query, you probably want to sanitize the user-names. See xkcd: Exploits of a Mom for an explanation.

For fun, a variation of Stephen C's answer:

StringBuilder sb = new StringBuilder("(");
boolean first = true;
for(String user : selUsers){
    if (!first || (first = false))
        sb.append(", ");
    sb.append('\'').append(user).append('\'');
}
sb.append(')');

you could even do the loop it like this :-)

for(String user : selUsers)
    sb.append(!first || (first=false) ? ", \'" : "\'").append(user).append('\'');
share|improve this answer

Use the 'old style' of loop where you have the index, then you add the comma on every username except the last:

    String[] selUsers = {"a", "b", "c"};
    String s="("; 
    for(int i = 0; i < selUsers.length; i++){
        s+= " ' " + selUsers[i] + " ' ";  
        if(i < selUsers.length -1){
            s +=" , ";
        }
    }
    s+=")";

But as others already mentioned, use StringBuffer when concatenating strings:

    String[] selUsers = {"a", "b", "c"};
    StringBuffer s = new StringBuffer("("); 
    for(int i = 0; i < selUsers.length; i++){
        s.append(" ' " + selUsers[i] + " ' ");  
        if(i < selUsers.length -1){
            s.append(" , ");
        }
    }
    s.append(")");
share|improve this answer

Use StringUtils.join from apache commons.

share|improve this answer
Why reinvent the wheel? – ptomli Jun 9 '10 at 10:49

Prior to adding the trailing ')' I'd strip off the last character of the string if it's a comma, or perhaps just replace the trailing comma with a right parenthesis - in pseudo-code, something like

if s.last == ',' then
  s = s.left(s.length() - 1);
end if;

s = s + ')';

or

if s.last == ',' then
  s.last = ')';
else
  s = s + ')';
end if;

Share and enjoy.

share|improve this answer

i would do s+= " ,'" + user + "'"; (place the comma before the value) and add a counter to the loop where i just do s = "'" + user + "'"; if the counter is 1 (or 0, depending on where you start to count).

share|improve this answer
can u explain it clearly – sarah Jun 9 '10 at 6:26
@sarah, I think my answer clarifies his suggestion. – aioobe Jun 9 '10 at 7:46
as aioobe says, see his answer for some code. i wanted you to think yourself, not giving you the premade code, so you realy understand what you are doing. – oezi Jun 9 '10 at 8:22

(N.B. - I'm not a Java guy, so the syntax may be wrong here - apologies if it is).

If selUsers is an array, why not do:

selUsers.join(',');

This should do what you want.

EDIT:

Looks like I was wrong - I figured Java had this functionality built-in. Looks like the Apache project has something that does what I meant, though. Check out this SO answer: http://stackoverflow.com/questions/1515437/java-function-for-arrays-like-phps-join/1515450#1515450

share|improve this answer
No join method exists on arrays or collections in Java. – Stephen C Jun 9 '10 at 6:28
Yeah, -sort of- unfortunately Java is purely OO language with no to little functional capabilities which join is one of. – Esko Jun 9 '10 at 10:50
@Esko - no that's not the reason. There's nothing non-OO about a join method. I guess that the real reason it is not supported is that arrays were deliberately kept simple. – Stephen C Jul 30 '11 at 9:36
@Stephen join is an operation applies to lists, not a property of list. Being OO can be seen as encapsulating based on what belongs to whom and since operations are implementation details instead of properties, they're not exactly at home in OO designed libraries such as Java Collections. Note that I'm not saying this would be a specifically good thing... – Esko Jul 30 '11 at 10:24
@Esko - oh I see what you mean. But even so, the real reason there is no join is that "they" didn't think it was important enough. Java is a LONG WAY from being a pure OO language, and "they" have no compunction in adding non-OO helper methods / classes if they are useful. BTW: calling join a "functional capability" is a bit of a stretch too. It would be just another method in Arrays. Actually, a secondary reason is that they'd have to add overloads for each primitive type ... because of the non-OO way that Java's handles primitive types! – Stephen C Jul 31 '11 at 1:27

I fully support Stephen C's answer - that's the one I wanted to suggest aswell: simply avoid adding the additional comma.

But in your special case, the following should work too:

s = s.replace(", \\)", ")");

It simply replaces the substring ", )" with a single bracket ")".

share|improve this answer

Java 1.4+

s = s.replaceFirst("\\, \\)$", ")");

Edited: I forgot last space before parethesis

share|improve this answer

StringBuilder has a perfectly good append(int) overload.

String [] array = {"1","2","3" ...}; 
StringBuilder builder = new StringBuilder(); 
 builder.append(s + "( ")
for(String i : array) 
{ 
    if(builder.length() != 0) 
        builder.append(","); 
    builder.append(i); 
} 
builder.append(" )")

Answer shamelessly copied from here

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.