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.htm
广告