Invalid escape sequence (valid ones are \ B \ t \ n \ f \ r \"\'\\)

Source: Internet
Author: User

This error occurs when I write a regular expression today: Invalid escape sequence (valid ones are \ B \ t \ n \ f \ r \"\'\\)

Solution: Change \ To \, and then OK.

This is a regular expression error. I searched the JDK help document and found the following paragraph:

According to the requirements of Java language specification, the backslash in the string of Java source code

It is interpreted as Unicode escape or other character escape. Therefore, two backlash lines must be used in the string literal value,

This indicates that the regular expression is protected and is not interpreted by the Java bytecode compiler. For example, when interpreted as a regular expression

The first parameter (obviously string. replaceall ("", "") is interpreted as a regular expression.

The nominal value "\ B" matches a single unsigned character, while "\ B"
Match the word boundary.

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.