From da78a9e329e272dedb2400b79a3bdeebff387d47 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:42:17 -0500 Subject: initial commit --- .../global_objects/string/search/index.html | 100 +++++++++++++++++++++ 1 file changed, 100 insertions(+) create mode 100644 files/ko/web/javascript/reference/global_objects/string/search/index.html (limited to 'files/ko/web/javascript/reference/global_objects/string/search') diff --git a/files/ko/web/javascript/reference/global_objects/string/search/index.html b/files/ko/web/javascript/reference/global_objects/string/search/index.html new file mode 100644 index 0000000000..3d27d812fc --- /dev/null +++ b/files/ko/web/javascript/reference/global_objects/string/search/index.html @@ -0,0 +1,100 @@ +--- +title: String.prototype.search() +slug: Web/JavaScript/Reference/Global_Objects/String/search +translation_of: Web/JavaScript/Reference/Global_Objects/String/search +--- +
{{JSRef}}
+ +

search() 메서드는 정규 표현식과  이 {{jsxref("String")}}  객체간에 같은 것을 찾기
+ 위한 검색을 실행한다.

+ +
{{EmbedInteractiveExample("pages/js/string-search.html")}}
+ + + +

구문

+ +
str.search(regexp)
+ +

매개변수

+ +
+
regexp
+
정규 표현식 객체.  non-RegExp 객체 obj 가 전달되면,  그것은  new RegExp(obj) 을 이용하여 {{jsxref("RegExp")}} 으로 암묵적으로 변환된다.
+
+ +

반환 값

+ +

정규표현식과 주어진 스트링간에 첫번째로 매치되는 것의 인덱스를 반환한다.
+ 찾지 못하면 -1 를 반환한다.

+ +

설명

+ +

When you want to know whether a pattern is found and also its index in a string use search() (if you only want to know if it exists, use the similar {{jsxref("RegExp.prototype.test()", "test()")}} method on the RegExp prototype, which returns a boolean); for more information (but slower execution) use {{jsxref("String.prototype.match()", "match()")}} (similar to the regular expression {{jsxref("RegExp.prototype.exec()", "exec()")}} method).

+ +

+ +

search()를 이용하기

+ +

The following example searches a string with 2 different regex objects to show a successful search (positive value) vs. an unsuccessful search (-1)

+ +
var str = "hey JudE";
+var re = /[A-Z]/g;
+var re2 = /[.]/g;
+console.log(str.search(re)); // returns 4, which is the index of the first capital letter "J"
+console.log(str.search(re2)); // returns -1 cannot find '.' dot punctuation
+ +

사양

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
사양상태주석
{{SpecName('ES3')}}{{Spec2('ES3')}}Initial definition. Implemented in JavaScript 1.2.
{{SpecName('ES5.1', '#sec-15.5.4.12', 'String.prototype.search')}}{{Spec2('ES5.1')}} 
{{SpecName('ES6', '#sec-string.prototype.search', 'String.prototype.search')}}{{Spec2('ES6')}} 
{{SpecName('ESDraft', '#sec-string.prototype.search', 'String.prototype.search')}}{{Spec2('ESDraft')}} 
+ +

브라우저 호환성

+ + + +

{{Compat("javascript.builtins.String.search")}}

+ +

Gecko-specific notes

+ + + +

See also

+ + -- cgit v1.2.3-54-g00ecf