Java String Slice slice(String value, int beginOffset, int endOffset, boolean trim)

Here you can find the source of slice(String value, int beginOffset, int endOffset, boolean trim)

Description

Return a slice (substring) of the passed in value, optionally trimmed.

License

Apache License

Parameter

Parameter Description
value Value to slice, must be non-null.
beginOffset Inclusive start character
endOffset Inclusive end character
trim To trim or not to trim

Return

Sliceed value.

Declaration

public static String slice(String value, int beginOffset,
        int endOffset, boolean trim) 

Method Source Code

//package com.java2s;
/*/* w w  w  .j  av  a  2s  . c  o m*/
 * #%L
 * ch-commons-util
 * %%
 * Copyright (C) 2012 Cloudhopper by Twitter
 * %%
 * 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.
 * #L%
 */

public class Main {
    /**
     * Return a slice (substring) of the passed in value, optionally trimmed.
     * WARNING - endOffset is inclusive for historical reasons, unlike
     * String.substring() which has an exclusive ending offset.
     * @param value Value to slice, must be non-null.
     * @param beginOffset Inclusive start character
     * @param endOffset Inclusive end character
     * @param trim To trim or not to trim
     * @return Sliceed value.
     */
    public static String slice(String value, int beginOffset,
            int endOffset, boolean trim) {
        String retval = value.substring(beginOffset, endOffset + 1);

        if (trim) {
            retval = retval.trim();
        }

        return retval;
    }
}

Related

  1. slice(int theNum, String[] theStringArray)
  2. slice(String contents, int CONTENT_COLUMN_SIZE)
  3. slice(String input, int index, int length)
  4. slice(String line)
  5. sliceAndMatch(String fstring, String rstring)
  6. sliceLength(int start, int stop, long step)