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

 
(사용자 2명의 중간 판 7개는 보이지 않습니다)
7번째 줄: 7번째 줄:
[[분류: Java]]
[[분류: Java]]
{{참고|자바 substr_count()}}
{{참고|자바 substr_count()}}
<source lang='java'>
<syntaxhighlight lang='java' run>
import java.util.regex.Pattern;
public class MyClass {
public class MyClass {
     public static void main(String args[]) {
     public static void main(String args[]) {
         String haystack = "This is a test";
         String s = "This is a test";
         String needle = "is";
         String sub = "is";
         int count = (haystack.length()-haystack.replace(needle,"").length()) / needle.length();
         int count = s.split(sub,-1).length-1;
         System.out.println( count );
         System.out.println( count ); // 2
        // 2
     }
     }
}
}
</source>
</syntaxhighlight>


==PHP==
==PHP==
[[분류: PHP]]
[[분류: PHP]]
{{참고|PHP substr_count()}}
{{참고|PHP substr_count()}}
<source lang='php'>
<syntaxhighlight lang='php' run>
echo substr_count('This is a test', 'is');
echo substr_count('This is a test', 'is'); # 2
# 2
</syntaxhighlight>
</source>
<syntaxhighlight lang='php' run>
<source lang='php'>
echo substr_count("Hello world. The world is nice","world"); # 2
echo substr_count("Hello world. The world is nice","world");
</syntaxhighlight>
# 2
</source>


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


==같이 보기==
==같이 보기==

2021년 4월 14일 (수) 18:54 기준 최신판


1 개요[ | ]

함수 substr_count()

2 Java[ | ]

import java.util.regex.Pattern;
public class MyClass {
    public static void main(String args[]) {
        String s = "This is a test";
        String sub = "is";
        int count = s.split(sub,-1).length-1;
        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 }}