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

3번째 줄: 3번째 줄:
==개요==
==개요==
;함수 substr_count()
;함수 substr_count()
==Java==
[[분류: Java]]
{{참고|자바 substr_count()}}
<source lang='java'>
public class MyClass {
    public static void main(String args[]) {
        String haystack = "This is a test";
        String needle = "is";
        int count = (haystack.length()-haystack.replace(needle,"").length()) / needle.length();
        System.out.println( count );
        // 2
    }
}
</source>


==PHP==
==PHP==

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


1 개요

함수 substr_count()

2 Java

public class MyClass {
    public static void main(String args[]) {
        String haystack = "This is a test";
        String needle = "is";
        int count = (haystack.length()-haystack.replace(needle,"").length()) / needle.length();
        System.out.println( count );
        // 2
    }
}

3 PHP

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

4 Python

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

5 같이 보기

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