Split of Java String class with vertical bar as separator

Source: Internet
Author: User
Problem

The split method of String class in Java, when using "|" When the segmentation is done, the results are not achieved. For example: Split string "abc| DEF ", get the string{} result is

A
B
C
|
D
E
F
" Solve

Split has two parameters, one is "limit", indicating the number of matching parameters, regex is matching parameters, split matching needs to enter a "regular expression", so the problem is on the regular expression.

If you want to implement the "|" As a separator, you should enter "\|" instead of "|". Example

public class Testsplit {public

    static void Main (string[] args) {
        String str = ' abc| DEF ";
        string[] Value = Str.split ("\\|");
        for (String s:value) {
            System.out.println (s);
        }

    }
}

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.