Java String Split splitIntoPackages(String stmt)

Here you can find the source of splitIntoPackages(String stmt)

Description

split Into Packages

License

Apache License

Declaration

private static String[] splitIntoPackages(String stmt) 

Method Source Code

//package com.java2s;
/*//from  w w w .  j  a  v  a2 s .  c  o  m
 * Copyright 2006-2009 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 {
    private static String[] splitIntoPackages(String stmt) {
        // spit the statement into packages but consider "
        List pkgs = new ArrayList(2);

        StringBuilder pkg = new StringBuilder();
        boolean ignoreComma = false;
        for (int stringIndex = 0; stringIndex < stmt.length(); stringIndex++) {
            char currentChar = stmt.charAt(stringIndex);
            if (currentChar == ',') {
                if (ignoreComma) {
                    pkg.append(currentChar);
                } else {
                    pkgs.add(pkg.toString());
                    pkg = new StringBuilder();
                    ignoreComma = false;
                }
            } else {
                if (currentChar == '\"') {
                    ignoreComma = !ignoreComma;
                }
                pkg.append(currentChar);
            }
        }
        pkgs.add(pkg.toString());
        return (String[]) pkgs.toArray(new String[pkgs.size()]);
    }
}

Related

  1. splitInitialItems(final String text)
  2. splitInput(String cliInput)
  3. splitIntArray(final String iInput)
  4. splitIntegerFromString(String str)
  5. splitIntegerPerDigit(int i)
  6. splitIntoPairs(String subDirName)
  7. splitInts(String str)
  8. splitJsonObjects(String string)
  9. splitJsonObjects(String value)