GithubHelp home page GithubHelp logo

js-study's Introduction

JS로 코딩테스트 준비!

1. 정규표현식(RegExp)

'정규식'이라고 하며 영어로는 Regualar Expression이다.

정규표현식 이란?

  • 문자열을 검색하고 대체하는 데 사용 가능한 일종의 형식 언어 패턴이다.

정규표현식 역할

  • 문자 검색
  • 문자 대체
  • 문자 추출

테스트 사이트

생성자 함수 방식

const regexp1 = new RegExp('표현, '옵션'); 
const regexp1 = new RegExp('[a-z]', 'gi'); 

리터럴 방식

/표현/옵션
/[a-z]]/gi;

예제 문자

const str = `
  010-1234-5678
  [email protected]
  https://www.omdbapi.com/?apikey=8b032db&s=civil war
  Ordinary is beautiful
  abbcccdddeeeefffff
  `

메소드

메소드 문법 설명
test 정규식.test(문자열) 일치 여부 (Boolean) 반환
match 문자열.match(정규식) 일치하는 문자의 배열 (Array) 반환
replace 문자열.replace(정규식, 대체문자) 일치하는 문자를 대체

플래그(옵션)

플래그 설명
g 모든 문자 일치(global)
i 영어 대소문자를 구분하지 않고 일치(ignore case)
m 여러 줄 일치(multi line)

패턴(표현)

패턴 설명
^ab 줄 시작에 있는 ab와 일치
ab$ 줄 끝에 있는 ab와 일치
. 임의의 한 문자와 일치
a|b a 또는 b와 일치
ab? b가 없거나 b와 일치
{3} 3개 연속 일치
{3, } 3개 이상 연속 일치
{3, 5} 3개 이상 5개 이하 연속 일치
[abc] a 또는 b 또는 c 일치
[a-z] a부터 z 사이의 문자 구간에 일치(영어 소문자)
[A-Z] A부터 Z 사이의 문자 구간에 일치 (영어 대문자)
[0-9] 0부터 9 사이의 문자 구간에 일치 (숫자)
[가-힣] 가부터 힣 사이의 문자 구간에 일치(한글)
\w 63개 문자(대소영문 52개 + 숫자 10개 + _)에 일치 (Word)
\b 62개 문자에 일치하지 않는 문자 경계 (Boundary)
\d 숫자에 일치 (Digit)
\s 공백에 일치 (Space, Tab)
(?=0) 앞쪽 일치 (Lookahead)
(?<=) 뒷쪽 일치 (Lookbehind)

js-study's People

Contributors

reemrev21 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.