728x90
๋ฐ์ํ
search() : ๋ฌธ์์ด์ ๊ฒ์(์ ๊ท์) : ๋ฐํ(์ซ์)
search() ๋ฉ์๋๋ ๋ฌธ์์ด(์ ๊ท์)์ ๊ฒ์ํ๊ณ ์์น๊ฐ(์ซ์)๋ฅผ ๋ฐํํฉ๋๋ค.
"๋ฌธ์์ด".search("๊ฒ์๊ฐ");
"๋ฌธ์์ด".search(์ ๊ท์ ํํ);
"๋ฌธ์์ด".search(์ ๊ท์ ํํ);
const str1 = "javascript reference";
const currentStr1 = str1.search('javascript'); //0
const currentStr2 = str1.search('reference'); //11
const currentStr3 = str1.search('j'); //0
const currentStr4 = str1.search('a'); //1
const currentStr5 = str1.search('v'); //2
const currentStr6 = str1.search('jquery'); //-1(๋ฐ์ดํฐ๊ฐ ์์ ๊ฒฝ์ฐ ์ด๋ ๊ฒ ์ถ๋ ฅ๋จ)
const currentStr7 = str1.search('b'); //-1(๋ฐ์ดํฐ๊ฐ ์์ ๊ฒฝ์ฐ ์ด๋ ๊ฒ ์ถ๋ ฅ๋จ)
const currentStr8 = str1.search(/[a-z]/g); //0
728x90
๋ฐ์ํ
'์๋ฐ์คํฌ๋ฆฝํธ' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
charAt() (7) | 2022.08.22 |
---|---|
match() (6) | 2022.08.22 |
includes() (5) | 2022.08.17 |
padStart() / padEnd() (5) | 2022.08.17 |
replace() / replaceAll() (4) | 2022.08.17 |
๋๊ธ