[C#] 문자열 간단히 둘러보기

Yerin·2022년 1월 19일
0

해당 글은 <C#과 유니티로 만드는 MMORPG 게임 개발 시리즈> 강의를 정리한 글입니다.


string name = "Harry Potter";
  1. 찾기
bool found = name.Contains("Harry"); //true
int index = name.IndexOf('z'); //-1
  1. 변형
name = name + "Junior"; //"Harry PotterJunior"
string lowerCaseName = name.ToLower(); //"harry potter"
string upperCaseName = name.ToUpper(); //"HARRY POTTER"
string newName = name.Replace('r', 'l'); //"Harry Pottel"
  1. 분할
string[] names = name.Split(new char[] { ' '}); // ' '을 기준으로 분할
string substringName = name.Substring(5); //" Potter"
profile
재밌는 코딩 공부

0개의 댓글