String codeUnitAt Metodo

Restituisce l'unità di codice UTF-16 a 16 bit all'indice specificato.

Sintassi

String.codeUnitAt(int index)

Parametro

  • Index - rappresenta l'indice di un carattere nella stringa.

Tipo di ritorno

Restituisce un numero intero.

Esempio

void main() { 
   var res = "Good Day"; 
   print("Code Unit of index 0 (G): ${res.codeUnitAt(0)}");  
}

Produrrà quanto segue output -.

Code Unit of index 0 (G): 71