Java Regular expression matching slash

Source: Internet
Author: User
Tags regular expression

To match a slash inside a regular expression, you need to use 4 slashes:

Java code

Import Java.util.regex.Matcher;
Import Java.util.regex.Pattern;


public class Test {

	/**
	 * @param args */public
	static void Main (string[] args) {
		//TODO Auto-generat Ed method stub
		String textstring = new String ("\\\");
		
		Pattern Pt=pattern.compile ("\\\\\");
		
		Matcher Mc=pt.matcher (textstring);
		
	         Mc.replaceall ("xx");
		
		Textstring.replaceall ("\", "XX");
		
		String Bl=mc.replaceall ("xx");
		
		System.out.println (textstring);
		System.out.println (BL);
		}

Analyze "\\\\", the first slash is the escape character, the second slash is the slash itself, the third slash is an escape character, the fourth slash is the slash itself.

There are 2 points to be clear:

1. The string inside means that the slash requires two slashes such as "\"

2. The slash in the regular expression needs to turn, is marked with "\".

This is a better explanation:

Let's first represent the slash "\" inside the regular expression, and then the string representation. These 2 slashes require an escape character, which in turn represents a slash in the regular expression of 4 slashes.

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.