Here you can find the source of quote(String p_string)
Escapes single quotes (') in strings by two single quotes ('').
public static String quote(String p_string)
//package com.java2s; /**//from w ww.java2s . com * Copyright 2009 Welocalize, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */ public class Main { /** * <p> * Escapes single quotes (') in strings by two single quotes (''). * </p> */ public static String quote(String p_string) { char quote = '\''; if (p_string.length() == 0 || p_string.indexOf(quote) == -1) { return p_string; } StringBuffer sb = new StringBuffer(p_string.length() + 2); for (int i = 0, max = p_string.length(); i < max; i++) { char ch = p_string.charAt(i); sb.append(ch); if (ch == quote) { sb.append(quote); } } return sb.toString(); } }