on how regular expressions match any character, including line breaks

Source: Internet
Author: User
Tags regular expression

In Java today, you want to use regular expressions to get any character in a piece of text. So it is very random to write the following matching rules:

(.*)

The result is run and the text after the line break is not found. So I checked the manual and found the regular expression, "." (dot symbol) matches all characters except the newline character "\ n". At the same time, there is a word in the manual: to match any character including ' \ n ', use a pattern like ' [. \ n] '. So I modified the regular expression matching rule as follows:

([. \n]*), of course, if it is written directly in a Java program, it needs to be changed to ([. \\n]*)

The results run the program again and find out what is not being taken. I am baffled, and modify it to the following rules:

([.| \n]*) and ([\ n.] *)

The result is still no, nothing is taken. Looks like the dot symbol and line break Fu Yi retwist ~

And then on the Internet a check, although did not find out what the above rule is a problem, but found a solution, after a try, sure enough to match any character including newline characters, the following is the correct regular expression matching rules :

([\s\s]*)

It can also be expressed as "([\d\d]*)", "([\w\w]*)").

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.