El método charAt() en TypeScript se usa para devolver el carácter en el índice especificado de la string. La string de caracteres se indexa de izquierda a derecha.
Sintaxis:
string.charAt( index )
Parámetro: este método acepta un solo parámetro como se mencionó anteriormente y se describe a continuación:
- índice: Es un valor entero entre 0 y 1 menor que la longitud de la string.
Valor devuelto: este método devuelve un carácter para el índice dado en el argumento.
Los siguientes ejemplos ilustran el funcionamiento del método charAt() en TypeScript:
Ejemplo 1:
TypeScript
// Original string var str = new String( 'JavaScript is object oriented language'); // Finding the character at given index var value = str.charAt(14); console.log(value);
Producción:
o
Ejemplo 2:
TypeScript
// Original string var str = new String( 'JavaScript is object oriented language'); // Finding the character at given index console.log("str.charAt(0) is: " + str.charAt(0)); console.log("str.charAt(1) is: " + str.charAt(1));
Producción:
str.charAt(0) is:J str.charAt(1) is:a
Publicación traducida automáticamente
Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA