> 웹 프론트엔드 > JS 튜토리얼 > javascript_javascript 스킬의 String.match()와 RegExp.exec()의 차이점에 대한 설명

javascript_javascript 스킬의 String.match()와 RegExp.exec()의 차이점에 대한 설명

WBOY
풀어 주다: 2016-05-16 17:44:05
원래의
1005명이 탐색했습니다.

1. 이 두 가지 방법은 일치에 성공하면 배열을 반환하고, 일치에 실패하면 null을 반환합니다.
2. RegExp의 전역 속성이 false인 경우 이 두 메서드의 반환 배열은 동일합니다.

배열의 0번째 요소는 전체 패턴 중 첫 번째로 일치하는 문자열이고, 다음 요소는 첫 번째로 일치하는 패턴의 부분 일치 문자열입니다.
또한 배열에는 index와 input이라는 두 가지 추가 속성이 있습니다. Index는 일치하는 문자열의 시작 위치이고 input은 전체 입력 문자열입니다.
이때 RegExp의 lastIndex 속성은 항상 0입니다.
데모:

코드 복사 코드는 다음과 같습니다.

var s = ' 이것은 문자열입니다';
var p = /bw*(i)sb/;
var rm = s.match(p)
var re = p.exec(s); console.log('match_array: ' JSON.stringify(rm));
console.log('match_array_index: ' rm.index)
console.log('match_array_input: ' rm.input); >console.log('-------------')
console.log('exec_array: ' JSON.stringify (re ));
console.log('exec_array_index: ' re.index);
console.log('exec_array_input: ' re.input);


표시 결과는 다음과 같습니다. (firefox 제어 대만):


match_array: [ "this","i "]
match_array_index: 0
match_array_input: 이것은 문자열입니다
------------------------- ---
exec_array: ["this","i"]
exec_array_index: 0
exec_array_input: 문자열


3. true, 반환된 배열이 다릅니다.
match 메서드에서 반환된 배열에는 하위 일치 문자열 및 추가 속성 없이 일치하는 모든 문자열이 포함됩니다. 현재로서는 lastIndex 속성이 유효하지 않습니다.
exec 메소드가 반환하는 배열 형식은 RegExp의 lastIndex 속성이 이때 유효한 점을 제외하고는 global이 false일 때와 동일합니다. lastIndex가 가리키는 문자부터 일치가 시작되며, 메소드가 실행된 후에는 lastIndex는 다음 문자에서 현재 일치하는 문자열로 설정되므로 exec 메서드가 루프에서 실행되면 문자열이 최종적으로 null을 반환하고 lastIndex가 0으로 설정될 때까지 전체 문자열이 순차적으로 일치됩니다.
데모:


var s = ' 이것은 문자열입니다.';
var p = /bw*(i)sb/g;
var rm = s.match(p)
console.log('match_array; : ' JSON .stringify(rm));
console.log('match_array_index: ' rm.index)
console.log('match_array_input: ' rm.input); .exec(들)){
console.log('---------------')
console .log( 'exec_array: ' JSON.stringify(re));
console.log('exec_array_index: ' re.index)
console.log('exec_array_input: ' re.input); console.log('regexp_lastIndex: ' p.lastIndex)
}
console.log('------------ --- ');
console.log('exec_array: ' re);
console.log('regexp_lastIndex: ' p.lastIndex)


결과:



코드 복사
코드는 다음과 같습니다. match_array: ["this","is"] match_array_index: 정의되지 않음 match_array_input: 정의되지 않음
---------------
exec_array: ["this ","i"]
exec_array_index: 0
exec_array_input: 문자열입니다.
regexp_lastIndex: 4
------ ------ --
exec_array: ["is","i"]
exec_array_index: 5
exec_array_input: 문자열입니다.
regexp_lastIndex: 7
---- ------ -----
exec_array: null
regexp_lastIndex: 0


요약:

1. g 식별자가 없는 경우 match 및 exec 메서드는 동일한 효과를 가지며, g 식별자가 있는 경우 exec 메서드는 가장 완벽한 일치 결과를 제공할 수 있습니다.
2. 여기서는 RegExp.test() 메소드가 언급되어 있습니다. 이는 exec 메소드의 단순화된 버전입니다. 일치하는 결과가 없으면 true를 리턴합니다. false. 실행 과정은 exec와 동일합니다. (p.exec(s) != null)과 동일합니다.
3. RegExp의 lastIndex 속성은 g 식별자를 가지며 exec 및 테스트 메서드에서는 유효하지만 다른 곳에서는 유효하지 않습니다.
관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿