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

7번째 줄: 7번째 줄:
console.log( n );
console.log( n );
// 24
// 24
</source>
<source lang='JavaScript'>
var str = "친구야, 안녕! 너는 나의 가장 좋은 친구야.";
var n = str.lastIndexOf("친구");
console.log( n );
// 21
</source>
</source>



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

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)
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}