码迷,mamicode.com
首页 > 编程语言 > 详细

Dart语言学习( 四) Dart字符串

时间:2020-01-27 00:00:53      阅读:92      评论:0      收藏:0      [点我收藏+]

标签:学习   多行   alt   start   lang   常用方法   his   art   gen   

一、字符串的创建

使用 单引号,双引号 创建字符串

使用 三个引号或双引号 创建多行字符串

使用 r 创建原始 raw 字符串

  String str1 = Hello;//""
  String str2 = ‘‘‘Hello
                  Dart‘‘‘;//"""
  print(str1);
  print(str2);

//  String str3 = ‘Hello \n Dart‘;
  String str3 = rHello \n Dart;
  print(str3);

输出

Hello
Hello
                  Dart
Hello \n Dart

二、字符串操作

技术图片

 

其他常用方法如下:

 技术图片

 

 

 

  String str4 = "This is my favorite language";
  print(str4 + "New");
  print(str4 * 5);
  print(str3 == str4);
  print(str4[1]);

  int a = 1;
  int b = 2;
  print("a + b = ${a + b}");
  print("a = $a");

  print(str4.length);
  print(str4.isEmpty);

  print(str4.contains("This"));
  print(str4.substring(0,3));
  print(str4.startsWith("a"));
  print(str4.endsWith("ge"));

  var list = str4.split(" ");
  print(list);

  print(str4.replaceAll("This", "That"));

输出:

This is my favorite languageNew
This is my favorite languageThis is my favorite languageThis is my favorite languageThis is my favorite languageThis is my favorite language
false
h
a + b = 3
a = 1
28
false
true
Thi
false
true
[This, is, my, favorite, language]
That is my favorite language

 

Dart语言学习( 四) Dart字符串

标签:学习   多行   alt   start   lang   常用方法   his   art   gen   

原文地址:https://www.cnblogs.com/jukaiit/p/12235055.html

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