Java string split by Fixed Length

Source: Internet
Author: User

From: http://www.rgagnon.com/javadetails/java-0438.html

Some notes from A. gonzares about string. Split ()

Special cases using string. Split ():

public class StringSplit {  public static void main(String args[]) throws Exception{    System.out.println(        java.util.Arrays.toString(        "  s".split(" ")    ));    // output : [, , s]    System.out.println(        java.util.Arrays.toString(        "".split("")    ));    // output : []    System.out.println(        java.util.Arrays.toString(        "  ".split(" ")    ));    // output : []    System.out.println(        java.util.Arrays.toString(        "      ".split(" ")    ));    // output : []    System.out.println(        java.util.Arrays.toString(        " s ".split(" ")    ));    // output : [, s]    }}

It's important to note that an invocation like:

param = req.getParam(...);String[] words = param.split(" ");String firstWord = words[0];

Will generate a nullpointerexception if Param. Equals ("").

Using split () with a space can be a problem. Consider the following:

public class StringSplit {  public static void main(String args[]) throws Exception{    String testString = "Real  How To";  // extra space    System.out.println(        java.util.Arrays.toString(        testString.split(" ")    ));    // output : [Real, , How, To]    }}

We have an extra element. The fix is to specify a regular expression to match one or more spaces.

public class StringSplit {  public static void main(String args[]) throws Exception{    String testString = "Real  How To";    System.out.println(        java.util.Arrays.toString(        testString.split("\\s+")    ));    // output : [Real, How, To]    }}

Since string. Split () is based on regular expression, you can make someComplexOperations with a simple call!

    String testString = "{RealHowto}{java-0438.html}{usage of String.split()}";    System.out.println(java.util.Arrays.toString(        testString.split("[{}]")    ));    // output : [, RealHowto, , java-0438.html, , usage of String.split()]    // note : extra empty elements :-(

To split a long string into fixed-length parts. In this example, we split in groups of 3 characters:

    String testString = "012345678901234567890";    System.out.println(java.util.Arrays.toString(        testString.split("(?<=\\G.{3})")    ));    // output : [012, 345, 678, 901, 234, 567, 890]

To split but keep the separator:

   String testString = "RealHowto!java-0438.html!usage of String.split()!";    System.out.println(java.util.Arrays.toString(        testString.split("(?<=[!])")    ));    // output : [RealHowto!, java-0438.html!, usage of String.split()!]  }

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.