Parsing links Related Knowledge

Source: Internet
Author: User
Tags file transfer protocol

The HTML may contain the label of the link we want to parse:

    • <a>
    • <frame>
Examples:
  1.  1  Span style= "color: #0000ff;" ><  framesetcols  = "25%,75%"  Span style= "color: #0000ff;" >>  <  frame  src  = "frame_a.htm"  >  <  frame  src  = "frame_b.htm"  >  4  </ frameset  >  
    1. <href= "url">Link text</a>
The images and audio at the beginning of the site must also contain links, but these are not the links we want to parse. None of these starts with <a>, such as displaying a picture on the site:
<src= "url"/>
Of course, the links we parse from the <a> tags will inevitably have links to pictures, audio, etc.Resources, we need to type judgment on the type of link. url-uniform Resource LocatorA Uniform Resource Locator (URL) is used to locate documents (or other data) on the World Wide Web. URLs, such as http://www.w3school.com.cn/html/index.asp, adhere to the following grammatical rules:
Scheme://host.domain:port/path/filename

Explain:

    • Scheme-Defines the type of Internet service. The most common type is the HTTP
    • Host-Defines the domain host (the default host for HTTP is www)
    • Domain-Define Internet domain names, such as w3school.com.cn
    • :p ORT-Defines the port number on the host (the default port number for HTTP is 80)
    • Path-Defines the path on the server (if omitted, the document must be in the root directory of the Web site).
    • FileName-Defines the name of the document/resource
URL schemes

Here are some of the most popular scheme:

Scheme Access used for ...
http Hypertext Transfer Protocol A normal web page that starts with http://. Not encrypted.
Https Secure Hypertext Transfer Protocol Secure Web page. Encrypt all information exchanges.
Ftp File Transfer Protocol Used to download or upload files to a Web site.
File The files on your computer.

 From for notes (Wiz)



Parsing links Related Knowledge

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.