Regular Expression > Character Classes
Pattern 클래스의 스펙을 통해서 지원되는 정규식 생성자를 보고자 한다면 다음 테이블에 나와있다. Character Classes 섹션에서 다음 내용에 대해서 설명할 것이다. Character Classes [abc] a, b, or c (simple class) [^abc] Any character except a, b, or c (negation) [a-zA-Z] a through z, or A through Z, inclusive (range) [a-d[m-p]] a through d, or m through p: [a-dm-p] (union) [a-z&&[def]] d, e, or f (intersection) [a-z&&[^bc]] a through z, except for b and c: ..
더보기