• <bdo id='K8wI2'></bdo><ul id='K8wI2'></ul>

    <i id='K8wI2'><tr id='K8wI2'><dt id='K8wI2'><q id='K8wI2'><span id='K8wI2'><b id='K8wI2'><form id='K8wI2'><ins id='K8wI2'></ins><ul id='K8wI2'></ul><sub id='K8wI2'></sub></form><legend id='K8wI2'></legend><bdo id='K8wI2'><pre id='K8wI2'><center id='K8wI2'></center></pre></bdo></b><th id='K8wI2'></th></span></q></dt></tr></i><div id='K8wI2'><tfoot id='K8wI2'></tfoot><dl id='K8wI2'><fieldset id='K8wI2'></fieldset></dl></div>
    <tfoot id='K8wI2'></tfoot>
    1. <small id='K8wI2'></small><noframes id='K8wI2'>

      <legend id='K8wI2'><style id='K8wI2'><dir id='K8wI2'><q id='K8wI2'></q></dir></style></legend>

      1. 如何读取文本框中的最后一行?

        How to read the last line in a textbox?(如何读取文本框中的最后一行?)
        <legend id='UmHzU'><style id='UmHzU'><dir id='UmHzU'><q id='UmHzU'></q></dir></style></legend>
          <i id='UmHzU'><tr id='UmHzU'><dt id='UmHzU'><q id='UmHzU'><span id='UmHzU'><b id='UmHzU'><form id='UmHzU'><ins id='UmHzU'></ins><ul id='UmHzU'></ul><sub id='UmHzU'></sub></form><legend id='UmHzU'></legend><bdo id='UmHzU'><pre id='UmHzU'><center id='UmHzU'></center></pre></bdo></b><th id='UmHzU'></th></span></q></dt></tr></i><div id='UmHzU'><tfoot id='UmHzU'></tfoot><dl id='UmHzU'><fieldset id='UmHzU'></fieldset></dl></div>
          • <bdo id='UmHzU'></bdo><ul id='UmHzU'></ul>
            <tfoot id='UmHzU'></tfoot>

                  <tbody id='UmHzU'></tbody>

                <small id='UmHzU'></small><noframes id='UmHzU'>

                1. 本文介绍了如何读取文本框中的最后一行?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我有一个不断更新的多行文本框.我只需要阅读文本框中的最后一个单词/句子.

                  I have a multiline textbox that constantly gets updated. I need to read only the last word/sentence in the textbox.

                  string lastLine = textBox1.ReadLine.Last();
                  

                  推荐答案

                  试试这个:

                  if (textBox1.Lines.Any())
                  {
                      string lastLine = textBox1.Lines[textBox1.Lines.Length - 1];
                  }
                  

                  最后一句话:

                  string lastword = lastLine.Split(' ').Last();
                  

                  这篇关于如何读取文本框中的最后一行?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  How to keep the Text of a Read only TextBox after PostBack()?(PostBack()之后如何保留只读文本框的文本?)
                  Winforms Textbox - Using Ctrl-Backspace to Delete Whole Word(Winforms 文本框 - 使用 Ctrl-Backspace 删除整个单词)
                  C# - Add button click events using code(C# - 使用代码添加按钮单击事件)
                  Multi-color TextBox C#(多色文本框 C#)
                  How can i set the caret position to a specific index in passwordbox in WPF(如何将插入符号位置设置为 WPF 密码框中的特定索引)
                  C# Numeric Only TextBox Control(C# 纯数字文本框控件)

                  <small id='e0lmF'></small><noframes id='e0lmF'>

                      <i id='e0lmF'><tr id='e0lmF'><dt id='e0lmF'><q id='e0lmF'><span id='e0lmF'><b id='e0lmF'><form id='e0lmF'><ins id='e0lmF'></ins><ul id='e0lmF'></ul><sub id='e0lmF'></sub></form><legend id='e0lmF'></legend><bdo id='e0lmF'><pre id='e0lmF'><center id='e0lmF'></center></pre></bdo></b><th id='e0lmF'></th></span></q></dt></tr></i><div id='e0lmF'><tfoot id='e0lmF'></tfoot><dl id='e0lmF'><fieldset id='e0lmF'></fieldset></dl></div>
                      <tfoot id='e0lmF'></tfoot>
                      • <legend id='e0lmF'><style id='e0lmF'><dir id='e0lmF'><q id='e0lmF'></q></dir></style></legend>
                          <tbody id='e0lmF'></tbody>
                          • <bdo id='e0lmF'></bdo><ul id='e0lmF'></ul>