Here you can find the source of slice(String value, int beginOffset, int endOffset, boolean trim)
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 |
public static String slice(String value, int beginOffset, int endOffset, boolean trim)
//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; } }