Regular Expressions match any character including line breaks

Source: Internet
Author: User

Regular Expressions can use. * to match any character other than line breaks. But how can I match any number of line breaks in the content? Matching fails. However, you can use [\ s] *?.

For example, enter:

<Url = "http://www.ibm.com"> This is some text

Another line

</URL>

Third Line

Some text here, <TLB = "IBM. com"/> end

Other

The regular expression matching the URL and TLB content is:

<Url = "(? <URL> [^ "] *?)"> [\ S] *? <TLB = "(? <TLB> [^ "] *?)" /> End

Description:

\ S matches any non-blank characters
. Match any single character except line breaks.

You mayArticleInterested:

  • Regular Expression matching and replacement
  • Regular expressions that match all blank characters except multi-line comments

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.