"함수 lastIndexOf()"의 두 판 사이의 차이

36번째 줄: 36번째 줄:
# int(47)
# int(47)
</source>
</source>
==같이 보기==
* [[함수 indexOf()]]

2016년 12월 2일 (금) 17:05 판

1 JavaScript

var url = "http://example.com/wiki/http-server";
var n = url.lastIndexOf("http");
console.log( n );
// 24
var str = "친구야, 안녕! 너는 나의 가장 좋은 친구야.";
var n = str.lastIndexOf("친구");
console.log( n );
// 21

2 PHP

$url = "http://example.com/wiki/http-server";
$n = strrpos($url, "http");
var_dump( $n );
# int(24)
$str = "친구야, 안녕! 너는 나의 가장 좋은 친구야.";
$n = mb_strrpos($str, "친구", "UTF-8");
var_dump( $n );
# int(21)
$str = "친구야, 안녕! 너는 나의 가장 좋은 친구야.";
$n = strrpos($str, "친구");
var_dump( $n );
# int(47)

3 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}