Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- flex-shrink
- Engoo
- regExp
- es6
- Prototype
- css variables
- shit-christmas
- Object.create
- JS
- select by attribute
- css 오버레이
- Express
- improve-iq-by-up-to-10%!
- ajax
- module wrapper function
- close together
- img 확대
- 정규표현식
- node
- Node.js
- just-one-small-sip
- 무료 백엔드 배포
- css
- 디자인패턴
- flexbox
- flex-basis
- express-handlebars
- css grid
- Sass
- flex-grow
Archives
- Today
- Total
목록[] (1)
Character Sets, Quantifier and Grouping in Regular Expression, 정규표현식에서의 문자열 집합, 수량자 그리고 그룹화
수량자를 이용할 때 ^와 $ 특수문자를 적절히 섞어써야할 때가 있음에 주의하면서 아래의 코드를 살펴보아요. (해당 부분은 그룹핑 코드에 표기해놓았습니다) Character Sets // Character Sets // brackets [] - 대괄호로 감싸져있는 문자들은 무엇이든 검색되도록 한다. ? 특수문자와는 다르게 알맞은 문자가 존재하지 않는 경우 검색되지 않는다. regExp = /gr[ae]y/i; // 대괄호 안에 위치한 문자는 a나 e여야한다. str = "gray"; // true str = "grey"; // true str = "gry"; // false const result1 = regExp.exec(str); console.log(result1); regExp = /[^GP]ray..
2021 프론트 엔드 로드맵 따라가기/JS
2021. 6. 13. 01:22