insert()1 [C#] String 함수 ToUpper(), ToLower(), Replace(), Insert(), Length, Substring() using System; namespace MyFirstProgram { internal class Program { static void Main(string[] args) // main method { // String method String fullName = "Jo Lab"; // fullName = fullName.ToUpper(); // 모든 문자를 대문자로 변경 // fullName = fullName.ToLower(); // 모든 문자를 소문자로 변경 Console.WriteLine(fullName); String numBer = "123-456-7890"; numBer = numBer.Replace("-", "/"); // 앞의 문자열을 뒤의 문자열로 변경 Console.WriteLin.. 2023. 3. 1. 이전 1 다음 728x90