本文主要是介绍asp.net 相反字,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
protected void Button1_Click(object sender, EventArgs e)
{
Response.Write(ReverseWords("I want the god"));
}
/// <summary>
/// 转换相反字
/// </summary>
/// <param name="sentence"></param>
/// <returns></returns>
public string ReverseWords(string sentence)
{
string[] words = sentence.Split(' ');
Array.Reverse(words);
return string.Join(" ", words);
}
输出 god the want I
这篇关于asp.net 相反字的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!