dart語言學習(四) 字串 布林型

2021-09-03 02:37:13 字數 1148 閱讀 4678

字串型別

使用單引號,雙引號建立字串

使用三個引號或雙引號建立多行字串

使用r建立原始raw字串

void main()
字串操作

運算子:+、*、==、

插值表示式:$

常用屬性:length、isempty、isnotempty

常用方法:contains(),substring();startswith(),endswith();indexof(),lastindexof();

tolowercase(),touppercase();trim(),trimleft(),trimright();

split(),replace***();

void main() ");

print("a=$a");

//常用屬性

print("length==>$");

print(str5.isempty);

//常用方法

print(str4.contains("dart"));

print(str4.substring(0, 3));

print(str4.startswith('a'));

print(str4.endswith('art'));

var list=str4.split(" ");

print(list);

print(str4.replaceall("dart", "huangxiaoguo"));

}

hello 

dart

hello

dart

hello \n dart

hello huangxiaoguo

hellohellohellohellohello

false

ea+b=10

a=2length==>5

false

true

helfalse

true

[hello, \n, dart]

hello \n huangxiaoguo

C語言學習(四)字串函式

1.strcat 字串拼接函式 用 法 char strcat char 字元陣列1,char 字元陣列2 說 明 把字元陣列2拼接到字元陣列1的後面 include include int main void 2.stpcpy拷貝乙個字串到另乙個 用 法 char stpcpy char 字元陣列...

C語言(四) 字串

define crt secure no warnings include include include 使用字元陣列儲存字串 void main char str 8 char str 10 chinese str 0 s printf s n str getchar 見圖一效果圖 字元指標 v...

python入門(四) 字串

0.字串的表示 字串可以用單引號 和雙引號 表示。若想在字串中表示單 雙引號,則在單 雙引號外面用雙 單引號括起來。故內部單 雙引號成為字元。1.字串的索引 字串的索引可以正序排列也可以倒序排列。正序從第乙個字元開始索引為0,正向遞增 倒敘從最後乙個字元開始索引為 1,反向遞減。2.字串的切片 返回...