La función strpbrk() es una función incorporada en PHP que busca en una string cualquiera de los caracteres especificados. Esta función devuelve el resto de la string desde donde encontró la primera aparición de cualquiera de los caracteres especificados. En caso de que no se encuentre ninguno de los caracteres, devuelve falso. Esta función distingue entre mayúsculas y minúsculas .
Sintaxis:
strpbrk( $string, $charlist)
Parámetros: Esta función acepta dos parámetros como se muestra en la sintaxis anterior. Ambos parámetros son obligatorios y deben suministrarse. Todos estos parámetros se describen a continuación:
- $string: este parámetro especifica la string que se buscará.
- $charlist: Este parámetro especifica los caracteres a buscar.
Valores devueltos: esta función devuelve una string a partir del carácter encontrado, o falso si no se encuentra.
Ejemplos:
Input : $string = "Geeks for Geeks!", $charlist = "ef" Output : eeks for Geeks! Explanation : 'e' is the first occurrence of the specified characters. This function will, therefore, output "eeks for Geeks!", because it returns the rest of the string from where it found the first occurrence of 'e'. Input : $string = "A Computer Science portal", $charlist = "tue" Output : uter Science portal
Los siguientes programas ilustrarán la función strpbrk() en PHP:
Programa 1:
php
<?php echo strpbrk("Geeks for Geeks!", "ef"); ?>
Producción:
eeks for Geeks!
Programa 2:
php
<?php echo strpbrk("A Computer Science portal", "tue"); ?>
Producción:
uter Science portal
Programa 3: Este programa ilustrará la distinción entre mayúsculas y minúsculas de la función.
php
<?php echo strpbrk("A Computer Science portal", "c"); ?>
Producción:
Science portal
Referencia:
<a target=»_blank» rel=»noopener noreferrer nofollow» href=»http://php.net/manual/en/
function.strpbrk.php”>http://php.net/manual/en/ función.strpbrk.php
Publicación traducida automáticamente
Artículo escrito por RICHIK BHATTACHARJEE y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA