Computer >> Máy Tính >  >> Lập trình >> C#

Chương trình C # để chuyển đổi chữ hoa chữ thường


Giả sử chuỗi của bạn là -

str = "AMIT";

Để chuyển đổi chuỗi chữ hoa ở trên thành chữ thường, hãy sử dụng phương thức ToLower () -

Console.WriteLine("Converted to LowerCase : {0}", str.ToLower());

Ví dụ

Sau đây là mã trong C # để chuyển đổi chữ hoa chữ thường.

using System;
using System.Collections.Generic;
using System.Text;
namespace Demo {
   class MyApplication {
      static void Main(string[] args) {
         string str;
         str = "AMIT";
         Console.WriteLine("UpperCase : {0}", str);
         // convert to lowercase
         Console.WriteLine("Converted to LowerCase : {0}", str.ToLower());
         Console.ReadLine();
      }
   }
}

Đầu ra

UpperCase : AMIT
Converted to LowerCase : amit