Link Search Menu Expand Document

RegExp

Table of contents

  1. Regular Expressions Basic
    1. What Is a Regular Expression?
    2. Syntax
    3. Modifier
      1. Pattern Expression
      2. Pattern Metacharacter
      3. Pattern Quantifier
  2. Using String Method
    1. search() With a Regular Expression
    2. With a Regular Expression
  3. RegExp Object
    1. Using test()
    2. Using exec()
  4. Complete RegExp Reference

Regular Expressions Basic

What Is a Regular Expression?

정규식은 검색패턴 을 형성하는 일련의 문자

▸ 텍스트에서 데이터를 검색할때 이 RegExp을 사용하여 검색중인 내용을 설명할 수 있음

▸ RegExp을 사용하여 모든 유형의 텍스트 검색 및 텍스트 바꾸기 작업을 수행

Syntax

syntax

/pattern/modifiers;

var patt = /w3schools/i;

Modifier

Pattern Expression

대괄호는 문자 범위를 찾는 데 사용

Pattern Metacharacter

메타 문자 는 특별한 의미를 가진 문자

*\d : Find a digit

*\s : Find a whitespace character

*\b : Find a match at the beginning of a word like this: \bWORD, or at the end of a word like this: WORD\b

*\uxxxx : Find the Unicode character specified by the hexadecimal number xxxx

Pattern Quantifier

수량을 정의


Using String Method

search() With a Regular Expression

search()메서드 : 식을 사용하여 일치 항목을 검색하고 일치 항목의 위치를 반환

예제

var str = "Visit W3Schools";
var n = str.search(/w3schools/i);

// n = 6

With a Regular Expression

replace()메서드 : 패턴이 대체 된 수정 된 문자열을 반환

예제

var str = "Visit Microsoft!";
var res = str.replace(/microsoft/i, "W3Schools");

// res = Visit W3Schools!

RegExp Object

RegExp 개체는 미리 정의된 속성 및 메서드가 있는 정규식 개체

Using test()

문자열에서 패턴을 검색하고 결과에 따라 true 또는 false를 반환

정규식 표현 방법

예제

var patt = /e/;
patt.test("The best things in life are free!");
// 정규식을 변수에 넣을 필요가 없음 : /e/.test("The best things in life are free!");

// true

Using exec()

문자열에서 지정된 패턴을 검색하고 찾은 텍스트를 객체로 반환

정규식 표현 방법

일치하는 항목이 없으면 빈 (null) 개체를 반환

예제

var obj = /e/.exec("The best things in life are free!");
document.getElementById("demo").innerHTML =
"Found " + obj[0] + " in position " + obj.index + " in the text: " + obj.input;

//Found e in position 2 in the text: The best things in life are free!

Complete RegExp Reference

The reference contains descriptions and examples of all RegExp properties and methods

W3School


이 웹사이트는 jekyll로 제작되었습니다. Patrick Marsceill, Distributed by an MIT license.