24 May 2016

Đảo chuỗi trong C# dùng Reverse + Array

Đảo ngược chuỗi trong C#
Đổi chỗ đảo chuỗi C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication9
{
    class Program
    {
        public static string ReverseString(string s)
        {
            char[] arr = s.ToCharArray(); // chuỗi thành mảng ký tự
            Array.Reverse(arr); // đảo ngược mảng
            return new string(arr); // trả về chuỗi mới sau khi đảo mảng
        }

        static void Main(string[] args)
        {
            string a = "123456789";
            string b = ReverseString(a);
            Console.WriteLine(b);

            Console.ReadLine();
        }
    }
}

1 nhận xét:

 

BACK TO TOP

Xuống cuối trang