Java String Empty to Null parseCommas(String s, boolean ignoreNulls)

Here you can find the source of parseCommas(String s, boolean ignoreNulls)

Description

parse Commas

License

Apache License

Declaration

public static Vector parseCommas(String s, boolean ignoreNulls) 

Method Source Code


//package com.java2s;
/*/*from   w ww. j  av a2 s.  c o  m*/
Copyright 2001-2015 Bo Zimmerman
    
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.*;

public class Main {
    public static Vector parseCommas(String s, boolean ignoreNulls) {
        final Vector V = new Vector();
        if ((s == null) || (s.length() == 0))
            return V;
        int x = s.indexOf(',');
        while (x >= 0) {
            final String s2 = s.substring(0, x).trim();
            s = s.substring(x + 1).trim();
            if ((!ignoreNulls) || (s2.length() > 0))
                V.addElement(s2);
            x = s.indexOf(',');
        }
        if ((!ignoreNulls) || (s.trim().length() > 0))
            V.addElement(s.trim());
        return V;
    }
}

Related

  1. emptyToNull(String value)
  2. emptyToString(String str, String returnStr)
  3. isHtmlNull(String str)
  4. nullSafeToString(Object obj)
  5. nvlStr(Object o, String valueIfNull)
  6. removeNulls(String... strings)
  7. toString(Object object, String nullStr)