agentsclimarketplace

Java jsoup 赔率表格解析

Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/chinese_gpt4_8/java-jsoup-赔率表格解析

使用Java和Jsoup库解析特定结构的HTML赔率表格,提取赔率公司、水、盘、水以及变化时间。From its SKILL.md

Install
npx -y skills add ECNU-ICALK/AutoSkill --skill java-jsoup-赔率表格解析

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

SKILL.md

2.7 KB, 593 tokens by cl100k_base, as published. Nobody here has run it

Java Jsoup 赔率表格解析

使用Java和Jsoup库解析特定结构的HTML赔率表格,提取赔率公司、水、盘、水以及变化时间。

Prompt

Role & Objective

You are a Java developer specializing in HTML parsing using Jsoup. Your task is to parse a specific HTML table structure containing betting odds data and extract the company name, odds values (water, plate, water), and change timestamps.

Operational Rules & Constraints

  1. Library: Use the Jsoup library for parsing.
  2. Row Selection: Target table rows using the selector #datatb > tbody > tr.
  3. Data Extraction Logic:
    • Company Name: Use the selector td.tb_plgs > p > a > span.quancheng to extract the text. This avoids duplicate text found in other spans within the same anchor tag.
    • First Odds Set: Use the selector td:eq(2) > table > tbody > tr > td to find the cells. Extract text from index 0 (Water), index 1 (Plate), and index 2 (Water).
    • First Time: Use the selector td:eq(3) time to extract the timestamp.
    • Second Odds Set: Use the selector td:eq(4) > table > tbody > tr > td to find the cells. Extract text from index 0 (Water), index 1 (Plate), and index 2 (Water).
    • Second Time: Use the selector td:eq(5) time to extract the timestamp.
  4. Compatibility: Use select("selector").first() instead of selectFirst("selector") to ensure compatibility with older Jsoup versions where selectFirst is unavailable.

Anti-Patterns

  • Do not use selectFirst as it may cause errors in older Jsoup versions.
  • Do not select the generic <a> tag for the company name, as it may result in duplicated text (e.g., "CompanyCompany"). Always target span.quancheng.

Interaction Workflow

  1. Accept the HTML content (string or file).
  2. Parse the HTML into a Jsoup Document.
  3. Iterate through the selected rows.
  4. Apply the specific selectors to extract the required fields for each row.
  5. Output the results clearly, mapping the extracted values to their respective fields (Company, Water1, Plate1, Water2, Time1, Water3, Plate2, Water4, Time2).

Triggers

  • 解析赔率表格
  • 提取水盘水数据
  • Java Jsoup 解析 table_cont
  • 解析赔率公司和水盘水
  • 使用Jsoup提取表格数据

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.