blob: 15d9e8cc169b5bad6a48ad94fecc08793767bfdf [file] [log] [blame]
/*
* 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.
*
*/
package org.apache.mina.http;
/**
* An utility class for Array manipulations.
*
* @author <a href="http://mina.apache.org">Apache MINA Project</a>
*/
public class ArrayUtil {
private ArrayUtil() {
}
/**
* Process an array of String and get rid of every Strings after an empty on.
*
* @param array The String[] array to process
* @param regex unused
* @return The resulting String[] which only contains non-empty Strings up to the first emtpy one
*/
public static String[] dropFromEndWhile(String[] array, String regex) {
for (int i = array.length - 1; i >= 0; i--) {
if (array[i].trim().length() != 0) {
String[] trimmedArray = new String[i + 1];
System.arraycopy(array, 0, trimmedArray, 0, i + 1);
return trimmedArray;
}
}
return null;
}
}