當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Dart String.fromCharCodes用法及代碼示例


dart:core 庫中String.fromCharCodes 的用法介紹如下。

用法:

String.fromCharCodes(
   Iterable<int> charCodes,    
   [int start = 0,    
   int? end]   
)

分配一個包含指定 charCodes 的新字符串。

charCodes 既可以是 UTF-16 代碼單元,也可以是符文。如果 char-code 值為 16 位,則將其用作代碼單元:

final string = String.fromCharCodes([68]);
print(string); // D

如果 char-code 值大於 16 位,則將其分解為代理對:

final clef = String.fromCharCodes([0x1D11E]);
clef.codeUnitAt(0); // 0xD834
clef.codeUnitAt(1); // 0xDD1E

如果提供了startend,則僅使用從start 到但不包括end 位置的charCodes 的值。 startend 值必須滿足 0 <= start <= end <= charCodes.length

相關用法


注:本文由純淨天空篩選整理自dart.dev大神的英文原創作品 String.fromCharCodes constructor。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。