
Cálculo de la letra del DNI español
Basic
511 visualizaciones desde el 28 de Febrero del 2025
Dado el número del Documento Nacional de Identidad calcula la letra de seguridad asociada.
eliminarEspacios("the big house"); # "thebighouse"
eliminarEspacios(""); # ""
eliminarEspaciosConsecutivos("the big house"); # "the big house"
eliminarEspaciosConsecutivos(""); # ""
removeSpaces("the big house"); // thebighouse
removeSpaces(" the big house "); // thebighouse
removeSpaces(" the \
big house !! "); // thebighouse!!
removeSpaces("theBigHouse"); // "theBigHouse"
removeSpaces(""); // ""
$string=" El\n sol\n brilla";
removeSpacePrevLines($string); // " El\nsol\n brilla";
$string=" El\n sol\n brilla";
removeSpacePrevLines($string); // "El\n sol\nbrilla";
$cadena="El \nsol \nbrilla ";
removeSpaceEndLines($cadena); // "El\nsol\nbrilla"