美文网首页
flutter 字符串 与 整形数组 互相转换 (字符与ASCI

flutter 字符串 与 整形数组 互相转换 (字符与ASCI

作者: 微风_10a5 | 来源:发表于2021-07-09 18:54 被阅读0次

    整形数组List<int>转为字符串

      List<int> charCodes = const [97, 98, 99, 100];
      print(String.fromCharCodes(charCodes));  //"abcd"
    

    字符串转整形数组List<int>

    List<int> a = "ABCD".codeUnits;
    print(a);  // [65, 66, 67, 68]
    

    字符 <------->ASCII值
    A <-------->65
    B <-------->66
    C <-------->67
    D <-------->68

    相关文章

      网友评论

          本文标题:flutter 字符串 与 整形数组 互相转换 (字符与ASCI

          本文链接:https://www.haomeiwen.com/subject/vjafpltx.html