C#의 문자열에서 하나의 하위 문자열을 다른 하위 문자열로 바꾸려면 메서드 바꾸기()
. 두 가지 사용 사례가 있습니다.
Replace(char old, char new) -
char old
char new
로 대체됨;
Replace(string old, string new) - string old
는 string new
로 대체됩니다. 교체되었습니다.
C#의 인라인 교체 예:
문자열 전화 = "+1-234-567-89-10";;
// 하이픈이 공백으로 변경됨
string edited_phone = phone.Replace("-", " ");
// +1 234 567 89 10