Agent Skills: Regex Tester Tool

测试和调试正则表达式,支持匹配高亮、捕获组和常用模式库。

UncategorizedID: aidotnet/moyucode/regex-tester

Install this agent skill to your local

pnpm dlx add-skill https://github.com/AIDotNet/MoYuCode/tree/HEAD/skills/tools/regex-tester

Skill Files

Browse the full folder contents for regex-tester.

Download Skill

Loading file tree…

skills/tools/regex-tester/SKILL.md

Skill Metadata

Name
regex-tester
Description
测试和调试正则表达式,支持匹配高亮、捕获组和常用模式库。

Regex Tester Tool

Description

Test and debug regular expressions with match highlighting, capture group extraction, and a library of common patterns.

Trigger

  • /regex command
  • User needs to test regex
  • User wants pattern matching help

Usage

# Test pattern
python scripts/regex_tester.py "\\d+" "abc123def456"

# Show capture groups
python scripts/regex_tester.py "(\\w+)@(\\w+)" "user@domain" --groups

# Find all matches
python scripts/regex_tester.py "\\b\\w{4}\\b" "The quick brown fox" --all

# Use common pattern
python scripts/regex_tester.py --pattern email "Contact: test@example.com"

Tags

regex, pattern, match, test, text

Compatibility

  • Codex: ✅
  • Claude Code: ✅