How regular expressions that contain newline characters match

Source: Internet
Author: User

How the regular expression containing the newline character matches:

\s\s

\s is a variety of whitespace characters, such as \n\t, and \s is ^\s

Point number (.) Any single character other than the line break can be matched, which is called a wildcard.

Match any word that contains \ n inside the trailing characters (. | \ n).

import re strvar  = """hello world!""" patt  = r ‘(.|\n)*‘ rs  = re.match(patt, strvar) print rs.group()

Use regular expressions to get any of the characters in a piece of text and 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".
The following is the correct regular expression matching rule:
([\s\s]*)
It can also be expressed as "([\d\d]*)", "([\w\w]*)").

How regular expressions that contain newline characters match

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.