scala中的跨行字串

2021-09-27 13:53:18 字數 650 閱讀 4434

1.不帶處理方式

在scala中可以用"""的方式建立多行字串

object hellostring

}

輸出如下:

hello scala

hello string

hello world

2.帶預設』|'處理的方式

object hellostring

}

輸出如下:

hello scala

hello string

hello world

3自定義字元處理方式

object hellostring

}

輸出如下:

hello scala

hello string

hello world

4.多行字串一行顯示

object hellostring

}

輸出如下:

hello scala hello string hello world

Scala入門 字串

scala提供多種定義字串的方式,將來我們可以根據需要來選擇最方便的定義方式。語法 val var 變數名 字串 示例 有乙個人的名字叫 hadoop 請列印他的名字以及名字的長度。參考 scala println name name.length hadoop6 scala中,可以使用插值表示式來...

scala解析 json字串

一 主題 使用scala的類庫解析json字串,避免引入第三方依賴包 二 實現如下 import org.json4s.defaultformats import org.json4s.jackson.jsonmethods.import scala.collection.mutable creat...

Scala字串插值

scala提供了三種字串插值方式 s,f和raw。1.s字串插值器 簡單的說就是解析字串變數。val name tom println s his name is name println s his name is my println s 23 78 第2行是最簡單的用法,第3行為了區分變數名加...