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
- ajax
- just-one-small-sip
- img 확대
- Express
- css
- css 오버레이
- shit-christmas
- select by attribute
- node
- express-handlebars
- 디자인패턴
- flex-shrink
- JS
- improve-iq-by-up-to-10%!
- flexbox
- Object.create
- es6
- flex-grow
- Node.js
- css variables
- regExp
- close together
- flex-basis
- css grid
- Prototype
- module wrapper function
- Sass
- 무료 백엔드 배포
- 정규표현식
- Engoo
Archives
- Today
- Total
목록Assertions (1)
Character Class & Assertions in Regular Expression
Character Class // Character Classes => 문자들을 구별하기 위해 사용됨 regExp = /\w/; // Word Character - 알파벳, 숫자, _ str = "_qwf"; const result1 = regExp.exec(str); console.log(result1); regExp = /\w+/; // + = 하나 또는 그 이상을 뜻함 str = "_qwf"; // +가 없는 결과와 비교해보자 const result2 = regExp.exec(str); console.log(result2); regExp = /\W/; // Non Word Character - word character가 아닌 모든 것 str = "한글"; // true const result3 =..
2021 프론트 엔드 로드맵 따라가기/JS
2021. 6. 14. 02:26