Java String Split by Line split(String line)

Here you can find the source of split(String line)

Description

split

License

Apache License

Declaration

public static String[] split(String line) 

Method Source Code

//package com.java2s;
/*//from   w  ww .j  ava 2 s . co  m
 * Copyright 2002-2012 the original author or authors.
 *
 * 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;

import java.util.List;

public class Main {

    public static String[] split(String line) {
        List<String> args = new ArrayList<String>();

        boolean quote = false;
        StringBuffer arg = new StringBuffer();
        for (int i = 0; i < line.length(); i++) {
            char c = line.charAt(i);
            if (c == '"') {
                quote = !quote;
                continue;
            } else if (c == ' ') {
                if (!quote) {
                    args.add(arg.toString());
                    arg.delete(0, arg.length());
                    continue;
                }
            }
            arg.append(c);
        }
        if (arg.length() > 0) {
            args.add(arg.toString());
        }

        return args.toArray(new String[args.size()]);
    }
}

Related

  1. fastSplit(final String line, final char c)
  2. split(String aLine, char delimiter, char beginQuoteChar, char endQuoteChar, boolean retainQuotes, boolean trimTokens)
  3. split(String line)
  4. split(String line)
  5. split(String line)
  6. split(String line, char delimiter)
  7. split(String line, char delimiter)
  8. split(String line, String delimiter)