Java String Single Quote singleQuotize(String s)

Here you can find the source of singleQuotize(String s)

Description

Puts single quotes around a string.

License

Apache License

Parameter

Parameter Description
s the string to be single 'quotized'

Return

a string with single quotes

Declaration

public static String singleQuotize(String s) 

Method Source Code

//package com.java2s;
/*//from   w ww . j  av a 2s .  c om
 * Copyright 2014 Feedzai
 *
 * 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 {
    /**
     * Puts single quotes around a string.
     *
     * @param s the string to be single 'quotized'
     * @return a string with single quotes
     */
    public static String singleQuotize(String s) {
        return quotize(s, "'");
    }

    /**
     * Puts quotes around a String.
     *
     * @param s the string to be 'quotized'
     * @return a the string with quotes
     */
    public static String quotize(String s) {
        return quotize(s, "\"");
    }

    /**
     * Puts quotes around a String.
     *
     * @param s the string to be 'quotized'
     * @return a the string with quotes
     */
    public static String quotize(String s, String quoteChar) {
        return quoteChar + s + quoteChar;
    }
}

Related

  1. singleQuote(String input)
  2. singleQuote(String s)
  3. singleQuote(String text)
  4. singleQuotedString(String str)
  5. singleQuoteForSql(String val)
  6. singleUnquoted(String string)