npx skillsauth add excatt/superclaude-plusplus regexInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
정규표현식 작성 및 테스트를 위한 가이드를 실행합니다.
. 임의의 한 문자
^ 문자열 시작
$ 문자열 끝
* 0회 이상
+ 1회 이상
? 0 또는 1회
{n} 정확히 n회
{n,} n회 이상
{n,m} n~m회
[abc] a, b, c 중 하나
[^abc] a, b, c 제외
[a-z] 소문자
[A-Z] 대문자
[0-9] 숫자
\d 숫자 [0-9]
\D 비숫자
\w 단어 문자 [a-zA-Z0-9_]
\W 비단어 문자
\s 공백 문자
\S 비공백 문자
(abc) 캡처 그룹
(?:abc) 비캡처 그룹
(?P<name>abc) 명명된 그룹 (Python)
(?<name>abc) 명명된 그룹 (JS)
\1, \2 역참조
(?=...) 긍정 전방탐색
(?!...) 부정 전방탐색
(?<=...) 긍정 후방탐색
(?<!...) 부정 후방탐색
^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$
https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*)
^01[0-9]-?[0-9]{3,4}-?[0-9]{4}$
^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$
^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01])$
^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[@$!%*?&])[A-Za-z\d@$!%*?&]{8,}$
[가-힣]+
^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$
const regex = /pattern/flags;
const regex = new RegExp('pattern', 'flags');
// 메서드
regex.test(str) // boolean
str.match(regex) // 배열
str.replace(regex, replacement)
str.split(regex)
import re
re.match(pattern, str) # 시작부터
re.search(pattern, str) # 어디서든
re.findall(pattern, str) # 모든 매칭
re.sub(pattern, repl, str) # 치환
re.compile(pattern) # 컴파일
g 전역 (모든 매칭)
i 대소문자 무시
m 멀티라인
s dotall (. 이 줄바꿈 포함)
## Regex Solution
### Pattern
```regex
/pattern/flags
part1 - 설명part2 - 설명| Input | Match | Captured | |-------|-------|----------| | test1 | ✅ | group1 | | test2 | ❌ | - |
const regex = /pattern/g;
const result = str.match(regex);
---
요청에 맞는 정규표현식을 작성하고 설명하세요.
testing
사용자 계획을 기존 도메인 모델에 대해 stress-test하는 인터뷰 세션. 용어를 날카롭게 다듬고, 결정이 굳어질 때마다 CONTEXT.md(도메인 어휘 사전)와 ADR을 인라인으로 갱신한다. 새 기능 요구사항 탐색은 `/brainstorm`을, 기존 도메인 모델·용어와의 정합성 점검은 이 스킬을 사용한다.
development
# Excel (XLSX) Spreadsheet Skill Claude Code supports comprehensive spreadsheet operations through the **xlsx** skill, enabling creation, editing, and analysis of Excel files (.xlsx, .xlsm, .csv, .tsv). ## Trigger - When user needs Excel spreadsheet creation or editing - Financial modeling or data analysis required - Spreadsheet formulas and calculations needed - Data import from CSV/TSV files ## Core Capabilities **Primary functions include:** - Creating new spreadsheets with formulas and f
tools
Generate structured implementation workflows from PRDs and feature requirements
development
실시간 통신 설계 가이드를 실행합니다.