반응형
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 |
Tags
- gas
- matplotlib
- SQL
- Mac
- Kotlin
- django
- PostgreSQL
- google apps script
- Tkinter
- list
- Python
- c#
- Google Excel
- Apache
- Redshift
- Google Spreadsheet
- math
- Github
- GIT
- Java
- dataframe
- PANDAS
- 파이썬
- numpy
- Excel
- PySpark
- array
- hive
- string
Archives
- Today
- Total
달나라 노트
C# : interpolation (문자열 format 기능 사용하기) 본문
728x90
반응형
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인 $를 사용해야합니다.
그리고 중괄호{}로 변수이름을 감싸면 중괄호 안에 있는 변수의 데이터로 string이 대체됩니다.
728x90
반응형
'C# > C#' 카테고리의 다른 글
C# : substring (문자열 자르기) (0) | 2022.03.23 |
---|---|
C# : 문자열 indexing (0) | 2022.03.23 |
C# : +, Concat (문자열 연결) (0) | 2022.03.23 |
C# : Math.Round (반올림), Math.Ceiling (올림), Math.Floor (내림) (0) | 2022.03.23 |
C# : Math.Abs (절대값) (0) | 2022.03.23 |
Comments