返回 Skill 列表
extension
分类: 数据与分析无需 API Key

Array Url Extractor

从 Array[String] 结构中提取有效的可下载 URL,清理并标准化后直接输出。

person作者: openlarkhubclawhub

Array URL Extractor

Extract valid URLs from Array[String] structures, output directly without any additional text.

Use Cases

Use when users need to "extract URLs from array", "extract download links", or "parse URLs in array".

Workflow

1. Parse Array

Receive user-provided Array[String] structures (JSON arrays, code snippets, etc.).

2. Extract URLs

  • Identify all valid URL addresses in the array (starting with https:// or http://)
  • Filter out invalid or non-URL strings
  • Clean up encoding issues and special characters
  • Standardize URL format

3. Output

Output URLs directly, one per line, without any additional text:

https://example.com/file1.jpg
https://example.com/file2.png

Constraints

  • Return URL addresses directly; do not add any other text
  • Output should be concise and clear, ready for direct use
  • Do not ask the user questions; process directly
  • Only output valid, downloadable URLs