Skip to content
On this page

유용한 정규표현식 모음

Title
유용한 정규표현식 모음
Category
Regex
Tags
Aliases
유용한 정규표현식 모음
Created
last year
Updated
6 months ago

특정 도메인의 특정 파일

https://regex101.com/r/cL2wz2/1

js
/(.*\.)?somedomain\.com:8000([\/?#&].*)custom.css$/;
/(.*\.)?somedomain\.com:8000([\/?#&].*)custom.css$/;

YYYY-MM-DD 형식 날짜

https://regexland.com/regex-dates/

https://regex101.com/r/r9FEKI/1

js
/^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01])$/;
/^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01])$/;

A but not B

https://regex101.com/r/gkMcky/1

js
/^(?!.*bar).*foo/;
/^(?!.*bar).*foo/;

Released under the MIT License.