Notice
Recent Posts
Recent Comments
Link
ยซ   2025/05   ยป
์ผ ์›” ํ™” ์ˆ˜ ๋ชฉ ๊ธˆ ํ† 
1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
Archives
Today
Total
๊ด€๋ฆฌ ๋ฉ”๋‰ด

eazyseon

lastIndexOf ๋ณธ๋ฌธ

๐Ÿ“’JavaScript

lastIndexOf

eazyseon 2023. 2. 22. 14:47
๋ฐ˜์‘ํ˜•

lastIndesOf

์ตœ์ดˆ๋กœ ๋งˆ์ฃผ์น˜๋Š” ์ธ๋ฑ์Šค๋ฅผ ๋ฐ˜ํ™˜/ ์ผ์น˜ํ•˜๋Š” ๋ถ€๋ถ„์„ ์ฐพ์„ ์ˆ˜ ์—†์œผ๋ฉด -1์„ ๋ฐ˜ํ™˜ํ•œ๋‹ค. 

 

์‚ฌ์šฉ ๋ฌธ๋ฒ• 

str.lastIndexOf(searchValue[, fromIndex])

 

๋งค๊ฐœ๋ณ€์ˆ˜

 

- searchValue

ํƒ์ƒ‰ํ•  ๋ฌธ์ž์—ด

- fromIndex optional

ํƒ์ƒ‰์˜ ์‹œ์ž‘์ ์œผ๋กœ ์‚ฌ์šฉํ•  ์ธ๋ฑ์Šค. ๊ธฐ๋ณธ๊ฐ’์€ ๋ฐฐ์—ด์˜ ๊ธธ์ด-1

 

์‚ฌ์šฉ์˜ˆ์‹œ

'hellohi'.lastIndexOf('h');     
//  ๋ฐฐ์—ด-1 ์ž๋ฆฌ์˜ ์š”์†Œ๋ถ€ํ„ฐ ํŒ๋ณ„, ์ฒ˜์Œ ์žˆ๋Š” h์˜ ์ธ๋ฑ์Šค 5 ๋ฐ˜ํ™˜
'hellohi'.lastIndexOf('h', 2);  
//  ์ธ๋ฑ์Šค 2๋ถ€ํ„ฐ ํŒ๋ณ„, ์ฒ˜์Œ ์žˆ๋Š” h์˜ ์ธ๋ฑ์Šค 0 ๋ฐ˜ํ™˜
'hellohi'.lastIndexOf('w');     
//  w๋Š” ์—†์œผ๋ฏ€๋กœ -1 ๋ฐ˜ํ™˜
'hellohi'.lastIndexOf('l', 1);  
// ์ธ๋ฑ์Šค 1 ๋ถ€ํ„ฐ l์ด ์žˆ๋Š”์ง€ ํŒ๋ณ„, ์—†์œผ๋ฏ€๋กœ -1 ๋ฐ˜ํ™˜
๋ฐ˜์‘ํ˜•
Comments