Nos dan dos strings s1 y s2. Necesitamos encontrar el número de ocurrencias de s2 en s1.
Ejemplos:
Input : $s1 = "geeksforgeeks", $s2 = "geeks" Output : 2 Explanation : s2 appears 2 times in s1 Input : $s1 = "Hello Shubham. how are you?"; $s2 = "shubham" Output : 0 Explanation : Note the first letter of s2 is different from substrings present in s1.
El problema se puede resolver utilizando la función integrada de PHP para contar el número de apariciones de una substring en una string dada. La función integrada utilizada para el problema dado es:
- substr_count(): La función substr_count() cuenta el número de veces que aparece una substring en una string.
Nota: La substring distingue entre mayúsculas y minúsculas.
<?php // PHP program to count number of times // a s2 appears in s1. $s1 = "geeksforgeeks"; $s2 = "geeks"; $res = substr_count($s1, $s2); echo($res); ?>
Producción :
2
Publicación traducida automáticamente
Artículo escrito por Shubham_Singh_29 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA