dart:core
庫中Runes
類的用法介紹如下。
String 的符文(整數 Unicode 代碼點)。
字符串的字符以 UTF-16 編碼。解碼結合了代理對的 UTF-16 會產生 Unicode 代碼點。遵循與 Go 類似的術語,Dart 使用名稱 'rune' 來表示表示 Unicode 代碼點的整數。使用runes
屬性獲取字符串的符文。
例子:
const string = 'Dart';
final runes = string.runes.toList();
print(runes); // [68, 97, 114, 116]
對於由代理對組成的基本多語言平麵(平麵 0)之外的字符,runes 組合該代理對並返回一個整數。
例如,"Man" 表情符號('👨'、U+1F468
)的 Unicode 字符是由 U+d83d
和 U+dc68
的代理組合而成。
例子:
const emojiMan = '👨';
print(emojiMan.runes); // (128104)
// Surrogate pairs:
for (final item in emojiMan.codeUnits) {
print(item.toRadixString(16));
// d83d
// dc68
}
也可以看看:
- 繼承
- 可用的擴展
相關用法
- Dart RuneIterator.moveNext用法及代碼示例
- Dart RegExp.pattern用法及代碼示例
- Dart RawSecureSocket.connect用法及代碼示例
- Dart RegExp.isCaseSensitive用法及代碼示例
- Dart Random用法及代碼示例
- Dart RegExp.allMatches用法及代碼示例
- Dart RtcStatsReport.containsKey用法及代碼示例
- Dart RtcStatsReport.containsValue用法及代碼示例
- Dart RawReceivePort.handler用法及代碼示例
- Dart Random.nextDouble用法及代碼示例
- Dart Random.nextInt用法及代碼示例
- Dart RtcStatsReport.remove用法及代碼示例
- Dart RtcStatsReport.putIfAbsent用法及代碼示例
- Dart RtcStatsReport.addAll用法及代碼示例
- Dart RegExp.hasMatch用法及代碼示例
- Dart Random.nextBool用法及代碼示例
- Dart Rectangle構造函數用法及代碼示例
- Dart RegExp用法及代碼示例
- Dart RegExp構造函數用法及代碼示例
- Dart RegExp.stringMatch用法及代碼示例
- Dart Rectangle.fromPoints用法及代碼示例
- Dart RtcStatsReport.clear用法及代碼示例
- Dart RegExp.firstMatch用法及代碼示例
- Dart RegExpMatch用法及代碼示例
- Dart RtcStatsReport.forEach用法及代碼示例
注:本文由純淨天空篩選整理自dart.dev大神的英文原創作品 Runes class。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。