Here you can find the source of split(String val, char ch)
Parameter | Description |
---|---|
val | text to be split |
ch | splitting character |
static String[] split(String val, char ch)
//package com.java2s; /**//from w ww .j a va 2 s .c o m * Copyright (C) 2011-2017 ARM Limited. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * 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. */ import java.util.ArrayList; public class Main { /** * Splits string with given character. Unlike String.split(..) this method * does not remove empty elements. * * @param val text to be split * @param ch splitting character */ static String[] split(String val, char ch) { int offset = 0; ArrayList<String> list = new ArrayList<>(); int nextPos = val.indexOf(ch, offset); while (nextPos != -1) { list.add(val.substring(offset, nextPos)); offset = nextPos + 1; nextPos = val.indexOf(ch, offset); } if (offset == 0) { return new String[] { val }; } list.add(val.substring(offset, val.length())); return list.toArray(new String[list.size()]); } }