"함수 substr count()"의 두 판 사이의 차이

24번째 줄: 24번째 줄:
# 2
# 2
</source>
</source>
==같이 보기==
* [[함수 count_chars()]]
* [[함수 strpos()]]
* [[함수 substr()]]
* [[함수 strstr()]]

2018년 9월 7일 (금) 00:25 판


1 개요

함수 substr_count()

2 PHP

echo substr_count('This is a test', 'is');
# 2
echo substr_count("Hello world. The world is nice","world");
# 2

3 Python

s = "Hello world. The world is nice"
print( s.count("world") )
# 2

4 같이 보기

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