글
C# paiza 68 - String 클래스 가진 메소드 사용
프로그래밍
2020. 5. 17. 22:04
728x90
SMALL
// Stringクラスの持つメソッドを使ってみよう
using System;
public class Practice
{
public static void Main()
{
var str = "The apple never falls far from the tree.";
// それぞれのメソッドの結果を1行ずつ出力する
Console.WriteLine(str.ToUpper());
Console.WriteLine(str.Substring(4)); //0부터 시작해서 4번째 문자부터 출력
Console.WriteLine(str.IndexOf("apple"));
}
}
///////////////
728x90
'프로그래밍' 카테고리의 다른 글
C# paiza 70 - 오버로드2 (0) | 2020.05.19 |
---|---|
C# paiza 69 - 오버로드1 (0) | 2020.05.19 |
C# paiza 67 - 문자열, 배열도 오브젝트로 (0) | 2020.05.17 |
C# paiza 66 - 억세서를 프로퍼티로 전환 (0) | 2020.05.17 |
C# paiza 65 - 프로퍼티2 (0) | 2020.05.17 |