码迷,mamicode.com
首页 > 其他好文 > 详细

将字符串中的字符反转输出

时间:2018-11-03 14:02:33      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:str   静态方法   定义   box   object   res   补充   end   分享图片   

实现效果:

技术分享图片

关键知识:(使用了Array类的Reveres静态方法)

技术分享图片

 

实现代码:

        private void button1_Click(object sender, EventArgs e)
        {
            if (textBox1.Text != string.Empty)
            {
                char[] cha = textBox1.Text.ToCharArray();//定义char数组
                Array.Reverse(cha,0,cha.Length);
                textBox2.Text =
                   new StringBuilder().Append(cha).ToString();
            }
            else { MessageBox.Show("请输入","提示:");  }
        }

补充:

如果要反转集合中的元素,可以使用集合对象的Reverse方法

 

将字符串中的字符反转输出

标签:str   静态方法   定义   box   object   res   补充   end   分享图片   

原文地址:https://www.cnblogs.com/feiyucha/p/9900220.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!