728x90
๋ฐ์ํ
indexOf()
indexOf() ๋ฉ์๋๋ ๋ฐฐ์ด์์ ์ง์ ๋ ์์๋ฅผ ์ฐพ์ ์ ์๋ ์ฒซ ๋ฒ์งธ ์ธ๋ฑ์ค๋ฅผ ๋ฐํํ๊ณ ์กด์ฌํ์ง ์์ผ๋ฉด -1์ ๋ฐํํฉ๋๋ค. indexOf()๋ ์ฒ์ ๋ฐ๊ฒฌ๋๋ ๋ฌธ์์ด์ ๋ํ index๋ฅผ ๋ฐํํ๊ณ , lastIndexOf๋ ๋ง์ง๋ง ๋ฌธ์์ด์ index๋ฅผ ๋ฐํํฉ๋๋ค.
"๋ฌธ์์ด".indexOf(๊ฒ์๊ฐ)
"๋ฌธ์์ด".indexOf(๊ฒ์๊ฐ, ์์น๊ฐ)
"๋ฌธ์์ด".lastIndexOf(๊ฒ์๊ฐ)
"๋ฌธ์์ด".lastIndexOf(๊ฒ์๊ฐ, ์์น๊ฐ)
"๋ฌธ์์ด".indexOf(๊ฒ์๊ฐ, ์์น๊ฐ)
"๋ฌธ์์ด".lastIndexOf(๊ฒ์๊ฐ)
"๋ฌธ์์ด".lastIndexOf(๊ฒ์๊ฐ, ์์น๊ฐ)
const str1 = "javascript reference";
const currentStr1 = str1.indexOf('javascript'); //0
const currentStr2 = str1.indexOf('reference'); //11
const currentStr3 = str1.indexOf('j'); //0
const currentStr4 = str1.indexOf('a'); //1
const currentStr5 = str1.indexOf('v'); //2
const currentStr6 = str1.indexOf('jquery'); //-1(๋ฐ์ดํฐ๊ฐ ์์ ๊ฒฝ์ฐ ์ด๋ ๊ฒ ์ถ๋ ฅ๋จ)
const currentStr7 = str1.indexOf('b'); //-1(๋ฐ์ดํฐ๊ฐ ์์ ๊ฒฝ์ฐ ์ด๋ ๊ฒ ์ถ๋ ฅ๋จ)
const currentStr8 = str1.indexOf('javascript', 0); //0
const currentStr9 = str1.indexOf('javascript', 1); //-1
const currentStr10 = str1.indexOf('reference', 0); //11
const currentStr11 = str1.indexOf('reference', 1); //11
const currentStr12 = str1.indexOf('reference', 11); //11
const currentStr13 = str1.indexOf('reference', 12); //-1
const currentStr14 = str1.lastIndexOf('javascript'); //0
const currentStr15 = str1.lastIndexOf('reference'); //11
const currentStr16 = str1.lastIndexOf('j'); //0
const currentStr17 = str1.lastIndexOf('a'); //3
const currentStr18 = str1.lastIndexOf('v'); //2
const currentStr19 = str1.lastIndexOf('jquery'); //-1
const currentStr20 = str1.lastIndexOf('b'); //-1
const currentStr21 = str1.lastIndexOf('javascript', 0); //0
const currentStr22 = str1.lastIndexOf('javascript', 1); //0
const currentStr23 = str1.lastIndexOf('reference', 0); //-1
const currentStr24 = str1.lastIndexOf('reference', 1); //-1
const currentStr25 = str1.lastIndexOf('reference', 11); //11
const currentStr26 = str1.lastIndexOf('reference', 12); //11
728x90
๋ฐ์ํ
'์๋ฐ์คํฌ๋ฆฝํธ' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
์ ๊ทํํ์ (4) | 2022.08.17 |
---|---|
slice() / substring() / substr() (6) | 2022.08.17 |
๋ด์ฅํจ์ (3) | 2022.08.15 |
๋ฐฐ์ด ๊ด๋ จ ๋ฉ์๋ (10) | 2022.08.11 |
์์ ์ ํ์ (5) | 2022.08.07 |
๋๊ธ