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

9번째 줄: 9번째 줄:
<source lang='php'>
<source lang='php'>
echo substr_count("Hello world. The world is nice","world");
echo substr_count("Hello world. The world is nice","world");
# 2
</source>
</source>


==Python==
==Python==
[[분류: Python]]
{{참고|파이썬 문자열 .count()}}
{{참고|파이썬 문자열 .count()}}
<source lang='python'>
s = "Hello world. The world is nice"
print( s.count("world") )
# 2
</source>

2017년 7월 26일 (수) 22:05 판


1 개요

함수 substr_count()

2 PHP

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