CN112800078A - Lightweight text labeling method, system, equipment and storage medium based on javascript - Google Patents

Lightweight text labeling method, system, equipment and storage medium based on javascript Download PDF

Info

Publication number
CN112800078A
CN112800078A CN202110153364.3A CN202110153364A CN112800078A CN 112800078 A CN112800078 A CN 112800078A CN 202110153364 A CN202110153364 A CN 202110153364A CN 112800078 A CN112800078 A CN 112800078A
Authority
CN
China
Prior art keywords
table name
label
span
javascript
sql statement
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Pending
Application number
CN202110153364.3A
Other languages
Chinese (zh)
Inventor
秦玉辰
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Beijing Mininglamp Software System Co ltd
Original Assignee
Beijing Mininglamp Software System Co ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Beijing Mininglamp Software System Co ltd filed Critical Beijing Mininglamp Software System Co ltd
Priority to CN202110153364.3A priority Critical patent/CN112800078A/en
Publication of CN112800078A publication Critical patent/CN112800078A/en
Pending legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/20Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
    • G06F16/24Querying
    • G06F16/242Query formulation
    • G06F16/2433Query languages
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/40Transformation of program code
    • G06F8/41Compilation
    • G06F8/42Syntactic analysis
    • G06F8/427Parsing

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Mathematical Physics (AREA)
  • Computational Linguistics (AREA)
  • Data Mining & Analysis (AREA)
  • Databases & Information Systems (AREA)
  • Software Systems (AREA)
  • Stored Programmes (AREA)

Abstract

The application discloses a lightweight text labeling method, a system, equipment and a storage medium based on javascript, wherein the method comprises the following steps: analyzing the SQL statement; acquiring a table name array according to the analysis result of the SQL statement; adding a span label to each table name in the table name array; and acquiring the label position information of the span label, and acquiring the position of the table name in the SQL statement according to the label position information. Through the method and the device, the technical problem that the position of the table cannot be found conveniently after the analysis of the ultra-long SQL statement can be solved, the use is simple, and the expansibility is strong.

Description

Lightweight text labeling method, system, equipment and storage medium based on javascript
Technical Field
The invention relates to a lightweight text labeling method. More specifically, the present invention relates to a lightweight text labeling method, system, device and storage medium based on javascript.
Background
In actual business, companies often need to have servers parse some tables in SQL (Structured Query Language) statements and then perform some operations on these tables. However, when a very long SQL statement is parsed, for example, several tens of rows or hundreds of rows of SQL statements are encountered, the position of the table parsed by the server in the SQL statement cannot be accurately found, so that the company service cannot be well developed.
JavaScript ("JS") is a lightweight, interpreted or just-in-time programming language with function precedence. Although JavaScript is known as a scripting language for developing Web pages, it is also used in many non-browser environments, based on prototype programming, multi-modal dynamic scripting languages, and supporting object-oriented, imperative, and declarative (e.g., functional) styles.
Disclosure of Invention
The embodiment of the application provides a lightweight text labeling method based on javascript, so as to at least solve the problem of subjective factor influence in the related technology.
The invention provides a lightweight text labeling method based on javascript, which comprises the following steps:
and (3) analyzing: analyzing the SQL statement;
a table name acquisition step: acquiring a table name array according to the analysis result of the SQL statement;
span tag adding step: adding a span label to each table name in the table name array;
a position acquisition step: and acquiring the label position information of the span label, and acquiring the position of the table name in the SQL statement according to the label position information.
The lightweight text labeling method based on javascript comprises the following steps:
matching: matching the position of each table name in the table name array through a regular expression;
an adding step: adding the span labels before and after the table name;
an ID adding step: and adding an ID to the span label.
The lightweight text labeling method based on javascript includes the following steps:
a distance acquisition step: obtaining the position of each span label from the top and the left of the SQL statement to obtain the label position information, and storing the label position information into the table name array;
a label creating step: creating a self-defined label according to the label position information;
a list creation step: creating a result list based on the table name array added with the ID and the label position information, and acquiring the position of the table name in the SQL statement;
an interactive adding step: and adding the interaction of the result list and the custom tag.
In the lightweight text labeling method based on javascript, the tag position information is obtained by using document.
Based on the same invention idea, the invention also discloses a lightweight text labeling system based on javascript based on the lightweight text labeling method based on javascript disclosed by any invention,
the lightweight text labeling system based on javascript comprises:
the analysis module analyzes the SQL statement;
the table name acquisition module acquires a table name array according to the analysis result of the SQL statement;
the span tag adding module is used for adding a span tag to each table name in the table name array;
and the position acquisition module is used for acquiring the label position information of the span label and acquiring the position of the table name in the SQL statement according to the label position information.
The lightweight text labeling system based on javascript, wherein the span tag adding module specifically includes:
the matching unit is used for matching the position of each table name in the table name array through a regular expression;
an adding unit that adds the span tag before and after the table name;
and the ID adding unit is used for adding an ID to the span tag.
The lightweight text labeling system based on javascript, wherein the position obtaining module specifically includes:
the distance acquisition unit is used for acquiring the distance between each span tag and the top and the left of the SQL statement to obtain tag position information and storing the tag position information into the table name array;
the label creating unit is used for creating a self-defined label according to the label position information;
the list creating unit is used for creating a result list based on a table name array added with the ID and the label position information and acquiring the position of the table name in the SQL statement;
and the interaction adding unit is used for adding the interaction between the result list and the custom label.
In the javascript-based lightweight text labeling system, the tag position information is obtained by using document.
In addition, in order to achieve the above object, the present invention further provides an apparatus, which includes a memory, a processor, and a computer program stored in the memory and executable on the processor, where the processor implements a javascript-based lightweight text annotation method when executing the computer program.
In addition, to achieve the above object, the present invention also provides a storage medium having a computer program stored thereon, which when executed by a processor, implements a javascript-based lightweight text annotation method.
Compared with the prior art, the invention has the following beneficial effects:
1. the lightweight text labeling method based on javascript is provided, and is oriented to the ultra-long SQL statement, and after the SQL statement is analyzed, some labels are carried out to help find the position of a table name in the SQL statement;
2. the use is simple, the expansibility is strong, and the development of working services is convenient;
3. and js is used for realizing lightweight labeling, so that the use experience of a user is improved.
The details of one or more embodiments of the application are set forth in the accompanying drawings and the description below to provide a more thorough understanding of the application.
Drawings
The accompanying drawings, which are included to provide a further understanding of the application and are incorporated in and constitute a part of this application, illustrate embodiment(s) of the application and together with the description serve to explain the application and not to limit the application. In the drawings:
fig. 1 is an overall flowchart of a lightweight text annotation method based on javascript according to an embodiment of the present invention;
FIG. 2 is a flowchart illustrating the overall method of the present invention;
FIG. 3 is a table name array format diagram disclosed in the present embodiment;
FIG. 4 is a flowchart illustrating the overall process of step S3 disclosed in FIG. 1;
FIG. 5 is a diagram of the table name array format after ID addition in the embodiment;
FIG. 6 is a flowchart illustrating the whole step S4 disclosed in FIG. 1;
FIG. 7 is a table name array form diagram after adding distance according to the present embodiment;
FIG. 8 is a diagram of a software interface disclosed in the present embodiment;
fig. 9 is a structural framework diagram of a lightweight text annotation system based on javascript according to this embodiment;
fig. 10 is a block diagram of a computer apparatus according to an embodiment of the present invention.
In the above figures:
1. an analysis module; 2. a table name acquisition module; 3. a span tag adding module; 4. a position acquisition module; 31. a matching unit; 32. an adding unit; 33. an ID adding unit; 41. a distance acquisition unit; 42. a label creating unit; 43. a list creation unit; 44. an interactive adding unit; 80. a bus; 81. a processor; 82. a memory; 83. a communication interface.
Detailed Description
In order to make the objects, technical solutions and advantages of the present application more apparent, the present application will be described and illustrated below with reference to the accompanying drawings and embodiments. It should be understood that the specific embodiments described herein are merely illustrative of the present application and are not intended to limit the present application. All other embodiments obtained by a person of ordinary skill in the art based on the embodiments provided in the present application without any inventive step are within the scope of protection of the present application.
It is obvious that the drawings in the following description are only examples or embodiments of the present application, and that it is also possible for a person skilled in the art to apply the present application to other similar contexts on the basis of these drawings without inventive effort. Moreover, it should be appreciated that in the development of any such actual implementation, as in any engineering or design project, numerous implementation-specific decisions must be made to achieve the developers' specific goals, such as compliance with system-related and business-related constraints, which may vary from one implementation to another.
Reference in the specification to "an embodiment" means that a particular feature, structure, or characteristic described in connection with the embodiment can be included in at least one embodiment of the specification. The appearances of the phrase in various places in the specification are not necessarily all referring to the same embodiment, nor are separate or alternative embodiments mutually exclusive of other embodiments. Those of ordinary skill in the art will explicitly and implicitly appreciate that the embodiments described herein may be combined with other embodiments without conflict.
Unless defined otherwise, technical or scientific terms referred to herein shall have the ordinary meaning as understood by those of ordinary skill in the art to which this application belongs. Reference to "a," "an," "the," and similar words throughout this application are not to be construed as limiting in number, and may refer to the singular or the plural. The present application is directed to the use of the terms "including," "comprising," "having," and any variations thereof, which are intended to cover non-exclusive inclusions; for example, a process, method, system, article, or apparatus that comprises a list of steps or modules (elements) is not limited to the listed steps or elements, but may include other steps or elements not expressly listed or inherent to such process, method, article, or apparatus. Reference to "connected," "coupled," and the like in this application is not intended to be limited to physical or mechanical connections, but may include electrical connections, whether direct or indirect. The term "plurality" as referred to herein means two or more. "and/or" describes an association relationship of associated objects, meaning that three relationships may exist, for example, "A and/or B" may mean: a exists alone, A and B exist simultaneously, and B exists alone. The character "/" generally indicates that the former and latter associated objects are in an "or" relationship. Reference to the terms "first," "second," "third," and the like in this application merely distinguishes similar objects and is not to be construed as referring to a particular ordering of objects.
The present invention is described in detail with reference to the embodiments shown in the drawings, but it should be understood that these embodiments are not intended to limit the present invention, and those skilled in the art should understand that the functional, methodological, or structural equivalents of these embodiments or alternatives thereof fall within the scope of the present invention.
Before describing in detail the various embodiments of the present invention, the core inventive concepts of the present invention are summarized and described in detail by the following several embodiments.
The method and the device can realize lightweight text labeling based on javascript, conveniently find the position of the table after the SQL sentence is analyzed through label labeling, and are simple to use and strong in expansibility.
The first embodiment is as follows:
referring to fig. 1 to 8, this example discloses a specific implementation of a lightweight text annotation method (hereinafter referred to as "method") based on javascript.
Specifically, referring to fig. 1 and 2, the method disclosed in this embodiment includes the following steps:
and step S1, analyzing the SQL statement.
And then, executing the step S2, and acquiring a table name array according to the analysis result of the SQL statement.
Specifically, in some embodiments, the parsing result of the SQL statement is obtained from the server, the data type returned is an array, and each item of the array is a table name, and the form is shown in fig. 3. It should be noted that the form of the table name array is not limited in the present invention.
Then, step S3 is executed to add a span tag to each table name in the table name array.
Specifically, in some embodiments, referring to fig. 4, the step S3 specifically includes the following steps:
s31, matching the table name array with the position of each table name through a regular expression;
s32, adding the span labels before and after the table name;
and S33, adding an ID to the span label.
Specifically, in some embodiments, the position of each table name in the parsing result is matched through a regular expression, then < span > < span > tags are added before and after the table name, an ID is added to each < span > tag, and finally the ID and the parsing result (table name array) are processed and stored for convenient use. For example: the table name array form after adding the ID can be as shown in fig. 5.
And then, executing step S4, obtaining the tag position information of the span tag, and obtaining the position of the table name in the SQL statement according to the tag position information.
Specifically, in some embodiments, referring to fig. 6, the step S4 specifically includes the following steps:
s41, obtaining the position of each span label from the top and the left of the SQL statement to obtain the label position information, and storing the label position information into the table name array;
s42, creating a self-defined label according to the label position information;
s43, creating a result list based on the table name array added with the ID and the label position information, and acquiring the position of the table name in the SQL statement;
and S44, adding the interaction between the result list and the custom label.
Specifically, the position of each span tag from the top and left of the SQL statement text is obtained using the js native method document getelementbyid () and then saved into the result data, for example: the table name array form after adding the distance can be as shown in fig. 7.
Specifically, in some embodiments, custom tags are created based on location information of the array table, with style liberty. And then creating a result list according to the table name array data added with the ID and the label position information. Meanwhile, in order to add a mouse click event, under the condition that a certain table name in the click result list is clicked, the text can automatically jump to the position of the table name in the text.
Specifically, in some embodiments, the software interface is as shown in fig. 8, other functions are added to the software, and clicking under the label in SQL can also implement automatic jump of the result position.
According to the lightweight text labeling method based on javascript disclosed by the embodiment of the application, after the SQL statement is analyzed, some labels are carried out to help find the position of the table name in the SQL statement; the use is simple, the expansibility is strong, and the development of working services is convenient; and js is used for realizing lightweight labeling, so that the use experience of a user is improved.
The details of one or more embodiments of the application are set forth in the accompanying drawings and the description below to provide a more thorough understanding of the application.
Example two:
in combination with the lightweight text annotation method based on javascript disclosed in the first embodiment, this embodiment discloses a specific implementation example of a lightweight text annotation system (hereinafter referred to as "system") based on javascript.
Referring to fig. 9, the system includes:
the analysis module 1 analyzes the SQL statement;
the table name acquisition module 2 is used for acquiring a table name array according to the analysis result of the SQL statement;
a span tag adding module 3, which adds a span tag to each table name in the table name array;
and the position acquisition module 4 is used for acquiring the label position information of the span label and acquiring the position of the table name in the SQL statement according to the label position information.
Specifically, in some embodiments, the span tag adding module 3 specifically includes:
the matching unit 31 is used for matching the position of each table name in the table name array through a regular expression;
an adding unit 32 that adds the span tag before and after the table name;
and an ID adding unit 33 for adding an ID to the span tag.
Specifically, in some embodiments, the position obtaining module 4 specifically includes:
the distance obtaining unit 41 is configured to obtain a position of each span tag from the top and the left of the SQL statement, obtain tag position information, and store the tag position information in the table name array;
a tag creating unit 42 for creating a custom tag according to the tag position information;
a list creating unit 43 that creates a result list based on a table name array to which the ID and the tag position information are added, and acquires a position of the table name in the SQL statement;
and an interaction adding unit 44, which adds the interaction between the result list and the custom tag.
Please refer to the description in the first embodiment, and details are not repeated herein.
Example three:
referring to FIG. 10, this embodiment discloses an embodiment of a computer device. The computer device may comprise a processor 81 and a memory 82 in which computer program instructions are stored.
Specifically, the processor 81 may include a Central Processing Unit (CPU), or A Specific Integrated Circuit (ASIC), or may be configured to implement one or more Integrated circuits of the embodiments of the present Application.
Memory 82 may include, among other things, mass storage for data or instructions. By way of example, and not limitation, memory 82 may include a Hard Disk Drive (Hard Disk Drive, abbreviated to HDD), a floppy Disk Drive, a Solid State Drive (SSD), flash memory, an optical Disk, a magneto-optical Disk, tape, or a Universal Serial Bus (USB) Drive or a combination of two or more of these. Memory 82 may include removable or non-removable (or fixed) media, where appropriate. The memory 82 may be internal or external to the data processing apparatus, where appropriate. In a particular embodiment, the memory 82 is a Non-Volatile (Non-Volatile) memory. In particular embodiments, Memory 82 includes Read-Only Memory (ROM) and Random Access Memory (RAM). The ROM may be mask-programmed ROM, Programmable ROM (PROM), Erasable PROM (EPROM), Electrically Erasable PROM (EEPROM), Electrically rewritable ROM (EAROM), or FLASH Memory (FLASH), or a combination of two or more of these, where appropriate. The RAM may be a Static Random-Access Memory (SRAM) or a Dynamic Random-Access Memory (DRAM), where the DRAM may be a Fast Page Mode Dynamic Random-Access Memory (FPMDRAM), an Extended data output Dynamic Random-Access Memory (EDODRAM), a Synchronous Dynamic Random-Access Memory (SDRAM), and the like.
The memory 82 may be used to store or cache various data files for processing and/or communication use, as well as possible computer program instructions executed by the processor 81.
The processor 81 reads and executes the computer program instructions stored in the memory 82 to implement any of the javascript-based lightweight text annotation methods in the above embodiments.
In some of these embodiments, the computer device may also include a communication interface 83 and a bus 80. As shown in fig. 10, the processor 81, the memory 82, and the communication interface 83 are connected via the bus 80 to complete mutual communication.
The communication interface 83 is used for implementing communication between modules, devices, units and/or equipment in the embodiment of the present application. The communication port 83 may also be implemented with other components such as: the data communication is carried out among external equipment, image/data acquisition equipment, a database, external storage, an image/data processing workstation and the like.
Bus 80 includes hardware, software, or both to couple the components of the computer device to each other. Bus 80 includes, but is not limited to, at least one of the following: data Bus (Data Bus), Address Bus (Address Bus), Control Bus (Control Bus), Expansion Bus (Expansion Bus), and Local Bus (Local Bus). By way of example, and not limitation, Bus 80 may include an Accelerated Graphics Port (AGP) or other Graphics Bus, an Enhanced Industry Standard Architecture (EISA) Bus, a Front-Side Bus (FSB), a Hyper Transport (HT) Interconnect, an ISA (ISA) Bus, an InfiniBand (InfiniBand) Interconnect, a Low Pin Count (LPC) Bus, a memory Bus, a microchannel Architecture (MCA) Bus, a PCI (Peripheral Component Interconnect) Bus, a PCI-Express (PCI-X) Bus, a Serial Advanced Technology Attachment (SATA) Bus, a Video Electronics Bus (audio Electronics Association), abbreviated VLB) bus or other suitable bus or a combination of two or more of these. Bus 80 may include one or more buses, where appropriate. Although specific buses are described and shown in the embodiments of the application, any suitable buses or interconnects are contemplated by the application.
The computer device can realize lightweight text annotation based on javascript, thereby realizing the method described in conjunction with fig. 1.
In addition, in combination with the javascript-based lightweight text annotation method in the foregoing embodiments, embodiments of the present application may provide a computer-readable storage medium to implement the method. The computer readable storage medium having stored thereon computer program instructions; when executed by a processor, the computer program instructions implement any one of the lightweight text annotation methods based on javascript.
The technical features of the embodiments described above may be arbitrarily combined, and for the sake of brevity, all possible combinations of the technical features in the embodiments described above are not described, but should be considered as being within the scope of the present specification as long as there is no contradiction between the combinations of the technical features.
In summary, the beneficial effects of the invention are that a lightweight text labeling method based on javascript is provided, which is oriented to the ultra-long SQL statement, and after the SQL statement is analyzed, some labels are performed to help find the position of the table name in the SQL statement; the use is simple, the expansibility is strong, and the development of working services is convenient; and js is used for realizing lightweight labeling, so that the use experience of a user is improved.
The above-mentioned embodiments only express several embodiments of the present application, and the description thereof is more specific and detailed, but not construed as limiting the scope of the invention. It should be noted that, for a person skilled in the art, several variations and modifications can be made without departing from the concept of the present application, which falls within the scope of protection of the present application. Therefore, the protection scope of the present patent shall be subject to the appended claims.

Claims (10)

1. A lightweight text labeling method based on javascript is characterized by comprising the following steps:
and (3) analyzing: analyzing the SQL statement;
a table name acquisition step: acquiring a table name array according to the analysis result of the SQL statement;
span tag adding step: adding a span label to each table name in the table name array;
a position acquisition step: and acquiring the label position information of the span label, and acquiring the position of the table name in the SQL statement according to the label position information.
2. The javascript-based lightweight text annotation method of claim 1, wherein the span tag adding step specifically comprises the steps of:
matching: matching the position of each table name in the table name array through a regular expression;
an adding step: adding the span labels before and after the table name;
an ID adding step: and adding an ID to the span label.
3. The javascript-based lightweight text annotation method of claim 2, wherein the position obtaining step specifically comprises the steps of:
a distance acquisition step: obtaining the position of each span label from the top and the left of the SQL statement to obtain the label position information, and storing the label position information into the table name array;
a label creating step: creating a self-defined label according to the label position information;
a list creation step: creating a result list based on the table name array added with the ID and the label position information, and acquiring the position of the table name in the SQL statement;
an interactive adding step: and adding the interaction of the result list and the custom tag.
4. The javascript-based lightweight text annotation method of claim 3, wherein the tag location information is obtained using document.
5. A lightweight text annotation system based on javascript is characterized by comprising:
the analysis module analyzes the SQL statement;
the table name acquisition module acquires a table name array according to the analysis result of the SQL statement;
the span tag adding module is used for adding a span tag to each table name in the table name array;
and the position acquisition module is used for acquiring the label position information of the span label and acquiring the position of the table name in the SQL statement according to the label position information.
6. The javascript-based lightweight text annotation system of claim 5, wherein the span tag addition module specifically comprises:
the matching unit is used for matching the position of each table name in the table name array through a regular expression;
an adding unit that adds the span tag before and after the table name;
and the ID adding unit is used for adding an ID to the span tag.
7. The javascript-based lightweight text annotation system of claim 6, wherein the location obtaining module specifically comprises:
the distance acquisition unit is used for acquiring the distance between each span tag and the top and the left of the SQL statement to obtain tag position information and storing the tag position information into the table name array;
the label creating unit is used for creating a self-defined label according to the label position information;
the list creating unit is used for creating a result list based on a table name array added with the ID and the label position information and acquiring the position of the table name in the SQL statement;
and the interaction adding unit is used for adding the interaction between the result list and the custom label.
8. The javascript-based lightweight text annotation system of claim 7, wherein the tag location information is obtained using document.
9. An apparatus comprising a memory, a processor, and a computer program stored on the memory and executable on the processor, wherein the processor implements the javascript based lightweight text annotation method as recited in any one of claims 1 to 4 when the computer program is executed.
10. A storage medium on which a computer program is stored, the program, when executed by a processor, implementing the javascript-based lightweight text annotation method according to any one of claims 1 to 4.
CN202110153364.3A 2021-02-04 2021-02-04 Lightweight text labeling method, system, equipment and storage medium based on javascript Pending CN112800078A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202110153364.3A CN112800078A (en) 2021-02-04 2021-02-04 Lightweight text labeling method, system, equipment and storage medium based on javascript

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202110153364.3A CN112800078A (en) 2021-02-04 2021-02-04 Lightweight text labeling method, system, equipment and storage medium based on javascript

Publications (1)

Publication Number Publication Date
CN112800078A true CN112800078A (en) 2021-05-14

Family

ID=75814148

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202110153364.3A Pending CN112800078A (en) 2021-02-04 2021-02-04 Lightweight text labeling method, system, equipment and storage medium based on javascript

Country Status (1)

Country Link
CN (1) CN112800078A (en)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN113326458A (en) * 2021-05-31 2021-08-31 山东云缦智能科技有限公司 Processing method for multi-line text truncation display based on Javascript

Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101094194A (en) * 2006-06-19 2007-12-26 腾讯科技(深圳)有限公司 Method for picking up web information needed by user in web page
JP2010282347A (en) * 2009-06-03 2010-12-16 Nec Corp Parsing apparatus, parsing method, and program
CN108460069A (en) * 2017-11-22 2018-08-28 钱慧敏 For the method for web page article independence point of addition comment
CN111898336A (en) * 2020-09-30 2020-11-06 拼说说(深圳)网络科技有限公司 Bullet screen display method and device, computer equipment and storage medium

Patent Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101094194A (en) * 2006-06-19 2007-12-26 腾讯科技(深圳)有限公司 Method for picking up web information needed by user in web page
JP2010282347A (en) * 2009-06-03 2010-12-16 Nec Corp Parsing apparatus, parsing method, and program
CN108460069A (en) * 2017-11-22 2018-08-28 钱慧敏 For the method for web page article independence point of addition comment
CN111898336A (en) * 2020-09-30 2020-11-06 拼说说(深圳)网络科技有限公司 Bullet screen display method and device, computer equipment and storage medium

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN113326458A (en) * 2021-05-31 2021-08-31 山东云缦智能科技有限公司 Processing method for multi-line text truncation display based on Javascript
CN113326458B (en) * 2021-05-31 2022-06-21 山东浪潮超高清视频产业有限公司 Processing method for multi-line text truncation display based on Javascript

Similar Documents

Publication Publication Date Title
US9411790B2 (en) Systems, methods, and media for generating structured documents
US20150295942A1 (en) Method and server for performing cloud detection for malicious information
US9563611B2 (en) Merging web page style addresses
CN108108342B (en) Structured text generation method, search method and device
CN106919711B (en) Method and device for labeling information based on artificial intelligence
CN110020329B (en) Method, device and system for generating webpage
CN109976840B (en) Method and system for realizing multi-language automatic adaptation based on foreground and background separation platform
CN107798001B (en) Webpage processing method, device and equipment
CN104899203B (en) Webpage generation method and device and terminal equipment
CN111984262A (en) WeChat cascading style sheet file processing method, device, equipment and storage medium
CN113360106B (en) Webpage printing method and device
CN109558123B (en) Method for converting webpage into electronic book, electronic equipment and storage medium
CN112800078A (en) Lightweight text labeling method, system, equipment and storage medium based on javascript
CN107329981B (en) Page detection method and device
CN113656737A (en) Webpage content display method and device, electronic equipment and storage medium
CN110209906A (en) Method and apparatus for extracting webpage information
CN113127776A (en) Breadcrumb path generation method and device and terminal equipment
CN111401979A (en) Distributed information acquisition method and device
CN108664511B (en) Method and device for acquiring webpage information
CN108984221B (en) Method and device for acquiring multi-platform user behavior logs
CN107643892B (en) Interface processing method, device, storage medium and processor
CN113297425B (en) Document conversion method, device, server and storage medium
CN109657184B (en) Rich text processing method, rich text processing device, server and computer readable medium
CN113221035A (en) Method, apparatus, device, medium, and program product for determining an abnormal web page
US20190228075A1 (en) Changing a language for a user session replay

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination