CoffeeScript String - charAt ()

Descrizione

Il charAt() Il metodo JavaScript restituisce il carattere della stringa corrente che esiste nell'indice specificato.

I caratteri in una stringa vengono indicizzati da sinistra a destra. L'indice del primo carattere è 0 e l'indice dell'ultimo carattere è uno in meno rispetto alla lunghezza della stringa. (stringName_length - 1)

Sintassi

Di seguito è riportata la sintassi del metodo charAt () di JavaScript. Possiamo usare lo stesso metodo dal codice CoffeeScript.

string.charAt(index);

Accetta un valore intero che rappresenta l'indice della stringa e restituisce il carattere all'indice specificato.

Esempio

L'esempio seguente mostra l'utilizzo di charAt()metodo di JavaScript nel codice CoffeeScript. Salva questo codice in un file con nomestring_charat.coffee

str = "This is string"  

console.log "The character at the index (0) is:" + str.charAt 0   
console.log "The character at the index (1) is:" + str.charAt 1   
console.log "The character at the index (2) is:" + str.charAt 2   
console.log "The character at the index (3) is:" + str.charAt 3   
console.log "The character at the index (4) is:" + str.charAt 4   
console.log "The character at the index (5) is:" + str.charAt 5

Apri il command prompt e compila il file .coffee come mostrato di seguito.

c:\> coffee -c string_charat.coffee

Durante la compilazione, ti dà il seguente JavaScript.

// Generated by CoffeeScript 1.10.0
(function() {
  var str;

  str = "This is string";

  console.log("The character at the index (0) is:" + str.charAt(0));

  console.log("The character at the index (1) is:" + str.charAt(1));

  console.log("The character at the index (2) is:" + str.charAt(2));

  console.log("The character at the index (3) is:" + str.charAt(3));

  console.log("The character at the index (4) is:" + str.charAt(4));

  console.log("The character at the index (5) is:" + str.charAt(5));

}).call(this);

Ora apri il file command prompt di nuovo ed eseguire il file CoffeeScript come mostrato di seguito.

c:\> coffee string_charat.coffee

All'esecuzione, il file CoffeeScript produce il seguente output.

The character at the index (0) is:T
The character at the index (1) is:h
The character at the index (2) is:i
The character at the index (3) is:s
The character at the index (4) is:
The character at the index (5) is:i