String codeUnitAt 方法

返回给定索引处的 16 位 UTF-16 代码单元。

语法

String.codeUnitAt(int index)

参数

  • Index − 表示字符串中字符的索引。

返回类型

返回一个整数。

示例

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

它将产生以下输出 −.

Code Unit of index 0 (G): 71  

dart_programming_string.html