Java split with a vertical bar as a delimiter

Source: Internet
Author: User

Today, we used the split function in Java to use the "|" As a separator, when the input bar, found an error, this problem should have been encountered long ago, but too long to forget!

Online a search, found the answer, this is because split inside there are two parameters, one is "limit", indicating the number of matching parameters, the other is the matching parameters, split is not a simple match, the input is "regular expression", so the problem is in this regular expression.

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

So it should be: Str.split ("\\|");

Note: There is a "//|" on the internet, which is wrong.

So later found not match the input delimiter, then look at the regular expression bar!

Java split with a vertical bar as a delimiter

Related Article

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.