반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Mac
- 파이썬
- Java
- array
- Google Excel
- gas
- GIT
- c#
- Python
- PANDAS
- PostgreSQL
- Kotlin
- google apps script
- PySpark
- string
- Excel
- numpy
- SQL
- Redshift
- Github
- hive
- django
- Google Spreadsheet
- dataframe
- list
- math
- Apache
- Tkinter
- matplotlib
Archives
- Today
- Total
목록Interpolation (1)
달나라 노트
C# : interpolation (문자열 format 기능 사용하기)
C#에서도 Python의 format같은 기능을 제공합니다. 특정 위치의 문자열에 제가 원하는 문자열을 삽입하는 기능이죠. using System; class MyProgram { static void Main() { string test1 = "Apple"; string test2 = "Banana"; string test3 = "Watermelon"; string new_string = $"first={test1}, second={test2}, third={test3}"; Console.WriteLine(new_string); } } -- Result first=Apple, second=Banana, third=Watermelon interpolation을 사용하기 위해선 먼저 dollor sign인..
C#/C#
2022. 3. 23. 20:11