Chaîne CoffeeScript - charAt ()

La description

le charAt() La méthode JavaScript renvoie le caractère de la chaîne actuelle qui existe dans l'index spécifié.

Les caractères d'une chaîne sont indexés de gauche à droite. L'index du premier caractère est 0 et l'index du dernier caractère est inférieur de un à la longueur de la chaîne. (stringName_length - 1)

Syntaxe

Vous trouverez ci-dessous la syntaxe de la méthode charAt () de JavaScript. Nous pouvons utiliser la même méthode à partir du code CoffeeScript.

string.charAt(index);

Il accepte une valeur entière représentant l'index de la chaîne et renvoie le caractère à l'index spécifié.

Exemple

L'exemple suivant montre l'utilisation de charAt()méthode de JavaScript dans le code CoffeeScript. Enregistrez ce code dans un fichier avec un nomstring_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

Ouvrez le command prompt et compilez le fichier .coffee comme indiqué ci-dessous.

c:\> coffee -c string_charat.coffee

Lors de la compilation, il vous donne le JavaScript suivant.

// 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);

Maintenant, ouvrez le command prompt à nouveau et exécutez le fichier CoffeeScript comme indiqué ci-dessous.

c:\> coffee string_charat.coffee

Lors de l'exécution, le fichier CoffeeScript produit la sortie suivante.

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