码迷,mamicode.com
首页 > 其他好文 > 详细

dart字符串研究

时间:2018-10-20 21:03:10      阅读:599      评论:0      收藏:0      [点我收藏+]

标签:The   字符   das   syn   hello   三方   world   ast   int   

print("hello world!");
print(Directory.current);
print(Directory.systemTemp);
// var ex= new File(‘file.txt‘).readAsStringSync();
// print(ex);
String a ="第三方似懂非懂司法所";
print(a.split("似懂"));
print(a);
print(a.substring(0,3));
print(a.codeUnitAt(0));
print(String.fromCharCode(31532));
print(a[0]);
print(a.indexOf(‘pattern‘));
print(a.indexOf(‘第‘));
print(a.contains(‘other‘));
print(a.length);
print(a.lastIndexOf(‘所‘));

dart字符串研究

标签:The   字符   das   syn   hello   三方   world   ast   int   

原文地址:https://www.cnblogs.com/leisure520/p/9822860.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!