Java String Quote quote(String text, String quote)

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

Description

Wraps the text in the given quote text

License

Apache License

Parameter

Parameter Description
text the text to wrap in quotes
quote the quote text added to the prefix and postfix of the text

Return

the text wrapped in the given quotes

Declaration

public static String quote(String text, String quote) 

Method Source Code

//package com.java2s;
/**//from   ww  w. ja  v a2 s .  c om
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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 {
    /**
     * Wraps the text in the given quote text
     *
     * @param text the text to wrap in quotes
     * @param quote the quote text added to the prefix and postfix of the text
     *
     * @return the text wrapped in the given quotes
     */
    public static String quote(String text, String quote) {
        return quote + text + quote;
    }
}

Related

  1. quote(String text)
  2. quote(String text)
  3. quote(String text)
  4. quote(String text)
  5. quote(String text)
  6. quote(String toQuote, String specials, char quoteChar)
  7. quote(String txt)
  8. quote(String val)
  9. quote(String val)