Devolver el contenido de una cadena que se encuentre entre dos caracteres recibidos
PHP
Publicado el 28 de Diciembre del 2019 por Kata (76 códigos)
1.063 visualizaciones desde el 28 de Diciembre del 2019
Crear una función que recibe una cadena y dos valores a buscar dentro de la cadena, de los cuales tiene que devolver el contenido introducido entre los valores recibos.
Si alguno de los valores a buscar no existen, devolver una cadena vacía.
Si alguno de los valores a buscar no existen, devolver una cadena vacía.
1
2
3
4
5
6
7
8
firstStringBetween('This is a [custom] string', '[', ']'); // "custom"
firstStringBetween('This is a #custom# string', '#', '#'); // "custom"
firstStringBetween('This is a "custom" string', '"', '"'); // "custom"
firstStringBetween('This is a custom string', 'is a', 'string'); // "custom"
firstStringBetween('This is a custom string', 'This', 'a'); # "is"
firstStringBetween('This is a [custom string', '[', ']'); // ""
firstStringBetween('This is a [custom] string', '', ''); // ""
firstStringBetween('This is a custom string', '*', '*'); // ""
24 visualizaciones durante los últimos 90 días