scala獲取字串首字元和尾字元

2022-08-18 05:42:14 字數 649 閱讀 4442

scala獲取字串首字元和尾字元

take()

scala> "hello".take(1)

res12: string = h

索引法

因為字串的本質是字元陣列

scala> "hello"(0)

res13: char = h

字串擷取
scala> "hello".substring(0,1)

res15: string = h

先反轉再獲取第乙個
scala> "hello".reverse.take(1)

res11: string = o

takeright()
scala> "hello".takeright(1)

res14: string = o

字串擷取
scala> "hello".substring("hello".length-1)

res16: string = o

last函式擷取
scala> "hello".last

res1: char = o

獲取字串

package cn.itcast.day08.demo02 public int length 獲取字串當中含有的字元個數,拿到字串長度。public string concat string str 將當前字串和引數字串拼接成為返回值新的字串。public char charat int ind...

STL string獲取字串元素 和at

字串中元素的訪問是允許的,一般可使用兩種方法訪問字串中的單一字元 下標操作符 和 成員函式at 兩者均返回指定的下標位置的字元。第 1 個字元索引 下標 為 0,最後的字元索引 下標 為 length 1。include include includeusing namespace std int ...

獲取字串中的子字串

如真彩色的red,green,blue的值組成乙個字串,用逗號分開。但是逗號的位置是非固定的,因為r,g,b的各個值可以是1 3位數。下面是乙個將r,g,b的值組成的字串,通過逗號來將其分割,並分別放到陣列中。並算出其真彩色的值。sub test dim ss as string ss 12,156...