Método JavaScript string.slice()

A continuación se muestra el ejemplo del método string.slice(). 
 

  • Ejemplo: 
     

javascript

<script>                    
    var A = 'Geeks for Geeks';
 
    b = A.slice(0,5);
    c = A.slice(6,9);
    d = A.slice(10);
  
    document.write(b +"<br>");
    document.write(c +"<br>");
    document.write(d +"<br>");
     
</script>
  • Producción: 
     
Geeks
for
Geeks

El string.slice() es un método incorporado en javascript que se usa para devolver una parte o un segmento de la string de entrada dada.
Sintaxis: 
 

string.slice(startingindex, endingindex)

Parámetro: este método utiliza índice inicial de dos parámetros (a partir del cual se debe iniciar la string) y índice final (antes del índice se debe incluir la string).
Valores devueltos: Devuelve una parte o una porción de la string de entrada dada.
Código JavaScript para mostrar el funcionamiento del método string.slice(): 
Código #1: 
 

javascript

<script>                   
  
   // Taking a string as input.
   var A = 'Ram is going to school';
    
   // Calling of slice() function.
   b = A.slice(0, 5);
 
   // Here starting index is 1 given
   // and ending index is not given to it so
   // it takes to the end of the string 
   c = A.slice(1);
    
   // Here endingindex is -1 i.e, second last character
   // of the given string.
   d = A.slice(3, -1);
   e = A.slice(6);
   document.write(b +"<br>");
   document.write(c +"<br>");
   document.write(d +"<br>");
   document.write(e);   
    
</script>

Producción: 
 

Ram i
am is going to school
is going to schoo
going to school

Código #2: 
 

javascript

<script>   
    // Taking a string as input.
    var A = 'Geeks for Geeks';
 
    // Calling of slice() function.
    // Here starting index is -1 given
    b = A.slice(-1,5);
    // Here endingindex is -1 i.e
    c = A.slice(0,-1);
 
    document.write(b +"<br>");
    document.write(c +"<br>");
     
</script>

Producción: 
 

Geeks for Geek

Navegador compatible:

  • Chrome 1 y superior
  • Borde 12 y superior
  • Firefox 1 y superior
  • Internet Explorer 4 y superior
  • Ópera 4 y superior
  • safari 1 y superior

Publicación traducida automáticamente

Artículo escrito por ShivamKD y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *