Symbol.search
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2015.
Symbol.search
정적 데이터 속성은 잘 알려진 심볼 Symbol.search
입니다. String.prototype.search()
메서드는 현재 객체와 일치하는 문자열 내의 인덱스를 반환하는 메서드의 첫 번째 인수에서 이 심볼을 찾습니다.
자세한 내용은 RegExp.prototype[Symbol.search]()
와 String.prototype.search()
을 참고하세요.
시도해보기
값
잘 알려진 심볼 Symbol.search
.
Property attributes of Symbol.search | |
---|---|
쓰기 가능 | 불가능 |
열거 가능 | 불가능 |
설정 가능 | 불가능 |
예제
고유의 문자열 검색
js
class caseInsensitiveSearch {
constructor(value) {
this.value = value.toLowerCase();
}
[Symbol.search](string) {
return string.toLowerCase().indexOf(this.value);
}
}
console.log("foobar".search(new caseInsensitiveSearch("BaR"))); // 3
명세서
Specification |
---|
ECMAScript Language Specification # sec-symbol.search |
브라우저 호환성
BCD tables only load in the browser