Home Backend Development Python Tutorial Recommended basic introductory tutorials for dynamic websites

Recommended basic introductory tutorials for dynamic websites

Jun 15, 2017 pm 01:06 PM

Regular matching is usually used when crawling the web content of a single website. However, the structures of different websites are so strange that it is difficult to match them with a unified regular expression. The author of "General Web Page Text Extraction Algorithm Based on Line Block Distribution Function" summarized the general methods of extracting article text from web pages, proposed a text extraction algorithm based on line block distribution, and provided implementations in PHP, Java, etc. The main principles of this algorithm are based on two points: 1. Text area density: after removing all tags in HTML, the character density in the text area is higher and there are fewer multiple lines of blanks; 2. Line block length: the content in non-text areas is average Shorter in individual labels (line blocks). The algorithm steps are as follows: 1. Remove all tags, including styles, Js script content, etc., but retain the original line breaks\n2. Split the web page content by lines, and define the line block $block_i$ as the first $[i, i + blockSize ]$ The sum of lines of text and gives the distribution function of line block length based on line numbers: 3. The text appears in the longest line block, intercept the range from both sides to the line block length of 0: 4. If you need to extract the pictures that appear in the text area , you only need to keep

1 when removing the tag in the first step. [python tutorial] Web page text and content image extraction algorithm

Recommended basic introductory tutorials for dynamic websites

#Introduction: Regular matching is usually used when crawling the web content of a single website. However, the structures of different websites are so strange that it is difficult to use unified regular expressions. formula to match. The author of "General Web Page Text Extraction Algorithm Based on Line Block Distribution Function" summarized the general methods of extracting article text from web pages, proposed a text extraction algorithm based on line block distribution, and provided implementations in PHP, Java, etc. The main principles of this algorithm are based on two points:

2. Example of php extracting web page text_PHP tutorial

Introduction: Example of php extracting the body content of a web page. Example of php extracting the text content of a web page because the difficulty lies in how to identify and retain the article part of the web page, and delete other useless information, and it must be universal and cannot be like a train

3. Where is the text information of web pages generally stored_html/css_WEB-ITnose

Introduction: Where is the text information of web pages generally stored?

4. Example of php extracting the body content of a web page

Introduction: Example of php extracting the body content of a web page. Example of php extracting the text content of a web page because the difficulty lies in how to identify and retain the article part of the web page, and delete other useless information, and it must be universal and cannot be like a train

5. In-depth analysis of the source code of using python to capture the text of web pages

Introduction: Usually when you open a web page, in addition to the text content of the article, there is usually a lot of navigation. , advertising and other information. The purpose of this article is to explain how to extract the text content of an article from a web page and transition away other irrelevant information.

6. javascript collection of methods to change font size [original]_javascript skills

Introduction: Provide the text of the web page, Switching function between small, medium and large fonts. Use js code to set the fontSize attribute of div style.

7. js Get the height and width of dom (visible area and part, etc.)_javascript skills

Introduction : The width or height of the visible area of ​​the web page, the width or height of the full body text of the web page, and the left or right part of the body text of the web page. Please see below for details. I hope it will be helpful to everyone.

[Related Q&A recommendations] :

objective-c - iOS web page text extraction open source library

##javascript - What is the implementation principle of Evernote's Chrome plug-in clipping

The above is the detailed content of Recommended basic introductory tutorials for dynamic websites. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to solve the permissions problem encountered when viewing Python version in Linux terminal? How to solve the permissions problem encountered when viewing Python version in Linux terminal? Apr 01, 2025 pm 05:09 PM

Solution to permission issues when viewing Python version in Linux terminal When you try to view Python version in Linux terminal, enter python...

How to teach computer novice programming basics in project and problem-driven methods within 10 hours? How to teach computer novice programming basics in project and problem-driven methods within 10 hours? Apr 02, 2025 am 07:18 AM

How to teach computer novice programming basics within 10 hours? If you only have 10 hours to teach computer novice some programming knowledge, what would you choose to teach...

How to avoid being detected by the browser when using Fiddler Everywhere for man-in-the-middle reading? How to avoid being detected by the browser when using Fiddler Everywhere for man-in-the-middle reading? Apr 02, 2025 am 07:15 AM

How to avoid being detected when using FiddlerEverywhere for man-in-the-middle readings When you use FiddlerEverywhere...

How to efficiently copy the entire column of one DataFrame into another DataFrame with different structures in Python? How to efficiently copy the entire column of one DataFrame into another DataFrame with different structures in Python? Apr 01, 2025 pm 11:15 PM

When using Python's pandas library, how to copy whole columns between two DataFrames with different structures is a common problem. Suppose we have two Dats...

How does Uvicorn continuously listen for HTTP requests without serving_forever()? How does Uvicorn continuously listen for HTTP requests without serving_forever()? Apr 01, 2025 pm 10:51 PM

How does Uvicorn continuously listen for HTTP requests? Uvicorn is a lightweight web server based on ASGI. One of its core functions is to listen for HTTP requests and proceed...

How to get news data bypassing Investing.com's anti-crawler mechanism? How to get news data bypassing Investing.com's anti-crawler mechanism? Apr 02, 2025 am 07:03 AM

Understanding the anti-crawling strategy of Investing.com Many people often try to crawl news data from Investing.com (https://cn.investing.com/news/latest-news)...

How to dynamically create an object through a string and call its methods in Python? How to dynamically create an object through a string and call its methods in Python? Apr 01, 2025 pm 11:18 PM

In Python, how to dynamically create an object through a string and call its methods? This is a common programming requirement, especially if it needs to be configured or run...

See all articles