如何使用 C# 反转字符串?
要反转字符串,请使用 Array.Reverse() 方法。
设置要反转的字符串 −
string str = "Amit";
在上述方法中,我们已将字符串转换为字符数组 −
char[] ch = str.ToCharArray();
然后使用 Reverse() 方法。
Array.Reverse(ch);
示例
using System; namespace Demo { class Program { static void Main(string[] args) { string str = "Amit"; char[] ch = str.ToCharArray(); Array.Reverse(ch); foreach(var items in ch) { Console.WriteLine(items); } Console.ReadLine(); } } }
广告