티스토리 뷰
반응형
Scala 2.10.0에 추가된 String Interpolation 예제 입니다.
val name = "moonsun"
val msg = s"My name is $name"
println(msg)
==> My name is moonsun
문자열 변수를 $연산자로 문자열 내부에서 바로 사용할 수 있는 기능임.
"s"를 String Interpolator라고 함.
Starting in Scala 2.10.0, Scala offers a new mechanism to create strings from your data: String Interpolation.
String Interpolation allows users to embed variable references directly in processed string literals
printf 처럼 사용할 수 있는 f Interpolator도 있음
The f
Interpolator
Prepending f
to any string literal allows the creation of simple formatted strings, similar to printf
in other languages. When using the f
interpolator, all variable references should be followed by a printf
-style format string, like %d
. Let’s look at an example:
val height = 1.9d
val name = "James"
println(f"$name%s is $height%2.2f meters tall") // James is 1.90 meters tall
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 빈센트 반 고흐
- Sybase IQ
- VARIDESK
- 증권정보포털
- 코라나 19
- 톡토기
- 배당급
- 브리다 정수기
- 남설 팔찌
- GKRS
- 로니카 BCS
- 오미크론
- yugabyteDB
- 솔리드 쿨론
- 별이 빚나는 밤
- weka
- 별잉 빛나는 밤
- 고체 향수
- JMW 헤어드라이기기
- 카카오 에드
- Pixel Pals
- 유가바이트디비
- Life Chair
- 매직 트랙패드2
- 루미큐브 종류
- 르세라핌
- node.js
- 홈 오피스
- 화분벌레
- 파나소닉 비데 DL-EH10KWS
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
글 보관함