Java String Quote quote(String message, String quotationMark)

Here you can find the source of quote(String message, String quotationMark)

Description

quote a given message with an quotation mark

License

Apache License

Parameter

Parameter Description
message a parameter
quotationMark StringUtil.SINGLE_QUOTE, StringUtil.DOUBLE_QUOTE, or other strings.

Return

the quoted message

Declaration

public static String quote(String message, String quotationMark) 

Method Source Code

//package com.java2s;
/*--------------------------------------------------------------------------
 *  Copyright 2004 Taro L. Saito/*from w w w  .j  a v  a 2  s  .  c  o  m*/
 *
 *  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 {
    /**
     * quote a given message with an quotation mark
     * 
     * @param message
     * @param quotationMark
     *            StringUtil.SINGLE_QUOTE, StringUtil.DOUBLE_QUOTE, or other
     *            strings.
     * @return the quoted message
     */
    public static String quote(String message, String quotationMark) {
        if (message == null)
            return message;
        return String.format("%s%s%s", quotationMark, message, quotationMark);
    }
}

Related

  1. quote(String filepath)
  2. quote(String inp)
  3. quote(String input)
  4. quote(String input)
  5. quote(String literal)
  6. quote(String name)
  7. quote(String name)
  8. quote(String name)
  9. quote(String name)