How to prevent java.lang.String.split() from creating a leading empty string?

JavaString

Java Problem Overview


passing 0 as a limit argument prevents trailing empty strings, but how does one prevent leading empty strings?

for instance

String[] test = "/Test/Stuff".split("/");

results in an array with "", "Test", "Stuff".

Yeah, I know I could roll my own Tokenizer... but the API docs for StringTokenizer say

> "StringTokenizer is a legacy class that is retained for compatibility > reasons although its use is discouraged in new code. It is recommended > that anyone seeking this functionality use the split"

Java Solutions


Solution 1 - Java

Your best bet is probably just to strip out any leading delimiter:

String input = "/Test/Stuff";
String[] test = input.replaceFirst("^/", "").split("/");

You can make it more generic by putting it in a method:

public String[] mySplit(final String input, final String delim)
{
    return input.replaceFirst("^" + delim, "").split(delim);
}

String[] test = mySplit("/Test/Stuff", "/");

Solution 2 - Java

Apache Commons has a utility method for exactly this: org.apache.commons.lang.StringUtils.split

StringUtils.split()

Actually in our company we now prefer using this method for splitting in all our projects.

Solution 3 - Java

I don't think there is a way you could do this with the built-in split method. So you have two options:

  1. Make your own split

  2. Iterate through the array after calling split and remove empty elements

If you make your own split you can just combine these two options

public List<String> split(String inString)
{
   List<String> outList = new ArrayList<>();
   String[]     test    = inString.split("/");

   for(String s : test)
   {
       if(s != null && s.length() > 0)
           outList.add(s);
   }

   return outList;
}

or you could just check for the delimiter being in the first position before you call split and ignore the first character if it does:

String   delimiter       = "/";
String   delimitedString = "/Test/Stuff";
String[] test;

if(delimitedString.startsWith(delimiter)){
    //start at the 1st character not the 0th
    test = delimitedString.substring(1).split(delimiter); 
}
else
    test = delimitedString.split(delimiter);

Solution 4 - Java

I think you shall have to manually remove the first empty string. A simple way to do that is this -

  String string, subString;
  int index;
  String[] test;

  string = "/Test/Stuff";
  index  = string.indexOf("/");
  subString = string.substring(index+1);

  test = subString.split("/"); 

This will exclude the leading empty string.

Solution 5 - Java

I think there is no built-in function to remove blank string in Java. You can eliminate blank deleting string but it may lead to error. For safe you can do this by writing small piece of code as follow:

  List<String> list = new ArrayList<String>();

  for(String str : test) 
  {
     if(str != null && str.length() > 0) 
     {
         list.add(str);
     }
  }

  test = stringList.toArray(new String[list.size()]);

Solution 6 - Java

When using JDK8 and streams, just add a skip(1) after the split. Following sniped decodes a (very wired) hex encoded string.

Arrays.asList("\\x42\\x41\\x53\\x45\\x36\\x34".split("\\\\x"))
    .stream()
    .skip(1) // <- ignore the first empty element
    .map(c->""+(char)Integer.parseInt(c, 16))
    .collect(Collectors.joining())

Solution 7 - Java

You can use StringTokenizer for this purpose...

String test1 = "/Test/Stuff";
		StringTokenizer st = new StringTokenizer(test1,"/");
		while(st.hasMoreTokens())
			System.out.println(st.nextToken());

Solution 8 - Java

This is how I've gotten around this problem. I take the string, call .toCharArray() on it to split it into an array of chars, and then loop through that array and add it to my String list (wrapping each char with String.valueOf). I imagine there's some performance tradeoff but it seems like a readable solution. Hope this helps!

 char[] stringChars = string.toCharArray(); 
 List<String> stringList = new ArrayList<>(); 

 for (char stringChar : stringChars) { 
      stringList.add(String.valueOf(stringChar)); 
 }

Solution 9 - Java

You can only add statement like if(StringUtils.isEmpty(string)) continue; before print the string. My JDK version 1.8, no Blank will be printed. 5 this program gives me problems

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionmarathonView Question on Stackoverflow
Solution 1 - JavaJoe AttardiView Answer on Stackoverflow
Solution 2 - JavaadranaleView Answer on Stackoverflow
Solution 3 - JavaHunter McMillenView Answer on Stackoverflow
Solution 4 - JavaCodeBlueView Answer on Stackoverflow
Solution 5 - JavaRahul TapaliView Answer on Stackoverflow
Solution 6 - Javam_cView Answer on Stackoverflow
Solution 7 - JavaShashank KadneView Answer on Stackoverflow
Solution 8 - JavaK. George PradhanView Answer on Stackoverflow
Solution 9 - Javaenjoy187View Answer on Stackoverflow