smithery/aidotnet

regex-tester

测试和调试正则表达式,支持匹?

Installation

$ npx skills add smithery/aidotnet --skill regex-tester

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/aidotnet · top by installs.

npx skills add smithery/aidotnet

Browse all from smithery/aidotnet

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Declared
Cursor Not declared
Codex Declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Declared agents claude-code codex
More metadata
short-description
测试正则表达式

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 977 B
  • docs SUMMARY.md 104 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

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: [email protected]"

Tags

regex, pattern, match, test, text

Compatibility

  • Codex: ✅
  • Claude Code: ✅