티스토리 뷰
반응형
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
- 화분벌레
- Pixel Pals
- 루미큐브 종류
- 솔리드 쿨론
- 오미크론
- 브리다 정수기
- 배당급
- 카카오 에드
- 빈센트 반 고흐
- Life Chair
- 로니카 BCS
- JMW 헤어드라이기기
- 별이 빚나는 밤
- 르세라핌
- node.js
- 파나소닉 비데 DL-EH10KWS
- 남설 팔찌
- 고체 향수
- VARIDESK
- GKRS
- 유가바이트디비
- 톡토기
- 코라나 19
- 매직 트랙패드2
- yugabyteDB
- weka
- 홈 오피스
- 증권정보포털
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
글 보관함