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

I had a requirement where i need to insert an escape sequence in a given string variable, at places wherever a single quotes (') appears. I tried using split method and also StringTokenizer, neither one worked out for me. So i developed the below mentioned logic. It also fails in a few scenarios

Can anyone provide me a simplest way to achieve such requirement.?

public static String quotesMessage(String message){
    String newMessage="";
    while(message.length()>0){
        if(message.indexOf("'")==0){
            if(!StringUtils.isEmpty(message.substring(0))){
                message = message.substring(1);
            }
        }else{
            if(message.indexOf("'")!= -1){
                newMessage=newMessage+message.substring(0,message.indexOf("'"))+"\\'";
                message=message.substring(message.indexOf("'"));
            }else{
                newMessage=newMessage+message;
                message="";
            }
        }
    }
    return newMessage;
}
share|improve this question

5 Answers

up vote 7 down vote accepted

how about this:

newMessage.replace("'", "\\'")

Or do I misunderstand your requirement?


And about the discussions in comments: yes, both replace() and replaceAll() use Regular Expressions use compiled Patterns internally (but replace() uses the flag Pattern.LITERAL), interpreting the pattern as literal value, whereas replaceAll() (and replaceFirst()) both use Regular Expressions. However, the compiled patterns are absolutely identical (in this case). Try it yourself:

Pattern literal = Pattern.compile("'",Pattern.LITERAL);
Pattern regular = Pattern.compile("'");

Add a breakpoint after these assignments and take a closer look at these two compiled patterns. You will find that all of their field values are identical, so in this case at least, no it doesn't make any difference performance-wise.

share|improve this answer
yup.. i got it..!!! – R K Feb 3 '11 at 17:32
will that replace all the quotes or it ll replace the first quotes.? – R K Feb 3 '11 at 17:33
all. The only difference to replaceAll() is that it doesn't use regular expressions but simple string replecement. – Sean Patrick Floyd Feb 3 '11 at 17:34
thats great.. it works even if i pass a continuous set of quotes..!! – R K Feb 3 '11 at 17:45
1  
Both replace() and replaceAll() use a regex... – jgubby Feb 3 '11 at 17:51
show 2 more comments

Use the replaceAll method:

myString.replaceAll("'", "\\'");
share|improve this answer
1  
No, don't use replaceAll(), use replace(). replaceAll() uses regular expressions internally, which is totally unnecessary in this case. – Sean Patrick Floyd Feb 3 '11 at 17:29
@Sean Great point. Use replace unless you need to search for something more complex than a CharSequence. – James Feb 3 '11 at 17:31
@Sean I tried running both replace and replaceAll 10^12 times, and they seem to have identical performance. Am I doing it wrong, or are they actually comparably performant? – James Feb 3 '11 at 17:40
@James the regex engine is of course highly optimized, you will probably need much larger numbers to notice the difference. machines are darn fast, these days :-) – Sean Patrick Floyd Feb 3 '11 at 17:42
@Sean according to this (gist.github.com/809863), replaceAll is a little faster. – James Feb 3 '11 at 17:55
show 1 more comment

I would use a StringBuilder object rather than manually concatinating the strings. At least you would get some performance improvement out of that if your strings are large.

share|improve this answer
message = message.replaceAll("'", "");
share|improve this answer
again, replaceAll() is overkill, see my comment under James' answer – Sean Patrick Floyd Feb 3 '11 at 17:33
String in = ...
StringBuilder out = new StringBuilder(in.length() + 16);
for (int i=0; i<in.length(); i++) {
    char c = in.charAt(i);
    if (c == '\'') {
        out.append("\\'");
    } else {
        out.append(c);
    }
}

String result = out.toString();
share|improve this answer
very verbose, but I guess it's properly done (+1). – Sean Patrick Floyd Feb 3 '11 at 17:36
Justification for the random number (16) is to ensure that the StringBuilder is less likely to do a re-allocation for a large string with just one or two instances of the ' character. If you know better about your particular application, you should remove this or change it. – jgubby Feb 3 '11 at 17:37
Verbose because he asked for an efficient implementation, and the String replace() and replaceAll() methods both use a pattern compiled on the spot. – jgubby Feb 3 '11 at 17:51
@Sean Patrick Floyed Why is this "done properly" vs. a String replace/replaceAll? To justify using this over the much simpler methods mentioned would require a performance profile that showed a benefit IMOHO (and an analysis in the appropriate context). There may be an advantage or there may not be an advantage. – user166390 Feb 3 '11 at 18:49

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.