本文介绍了如何在 C# 中反转文本?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我知道这是一个简单的问题,但我想我会试一试.

I know this is a simple question, but I thought I'd give it a try.

所以说我有一个名为toReverse"的文本框.如果我想反转该 TextBox 中的所有文本,我该怎么做?

So say I have a TextBox named "toReverse". If I wanted to reverse all the text in that TextBox, how would I go about doing that?

另外,我不能在其中使用 VB.NET,即使它有一种单行方式.

Also, I can't use VB.NET in it, even though it has a one-line way of doing it.

推荐答案

char[] chararray = this.toReverse.Text.ToCharArray();
Array.Reverse(chararray);
string reverseTxt = "";
for (int i = 0; i <= chararray.Length - 1; i++)
{
    reverseTxt += chararray.GetValue(i);
}
this.toReverse.Text = reverseTxt;

希望能帮到你

这篇关于如何在 C# 中反转文本?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-26 02:20