Delete Lines From Beginning of Multiline Textbox in C#(从 C# 中的多行文本框的开头删除行)
问题描述
在 C# 中是否有一种优雅的方式可以从多行文本框的开头删除多行文本?我正在使用 Microsoft Visual C# 2008 Express Edition.
Is there a graceful way in C# to delete multiple lines of text from the beginning of a multiline textbox? I am using Microsoft Visual C# 2008 Express Edition.
编辑 - 其他详细信息我的应用程序中的多行文本框被禁用(即它只能由应用程序本身编辑),并且每一行都以 "结尾.
EDIT - Additional Details The multiline textbox in my application is disabled (i.e. it is only editable by the application itself), and every line is terminated with a " ".
推荐答案
这是一个不完整的问题.因此,假设您使用 TextBox 或 RichTextBox,您可以使用 TextBoxBase 中的 Lines 属性.
This is an incomplete question. So assuming you are using either TextBox or RichTextBox you can use the Lines property found inTextBoxBase.
//get all the lines out as an arry
string[] lines = this.textBox.Lines;
然后您可以使用此数组并将其重新设置.
You can then work with this array and set it back.
this.textBox.Lines= newLinesArray;
这可能不是最优雅的方式,但它会删除第一行.您不需要选择,只需使用跳过就可以了
This might not be the most elegant way, but it will remove the first line. you don't need select, just using skip will be fine
//number of lines to remove from the beginning
int numOfLines = 30;
var lines = this.textBox1.Lines;
var newLines = lines.Skip(numOfLines);
this.textBox1.Lines = newLines.ToArray();
这篇关于从 C# 中的多行文本框的开头删除行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:从 C# 中的多行文本框的开头删除行
- 在 LINQ to SQL 中使用 contains() 2022-01-01
- 为什么 C# 中的堆栈大小正好是 1 MB? 2022-01-01
- 是否可以在 .Net 3.5 中进行通用控件? 2022-01-01
- CanBeNull和ReSharper-将其用于异步任务? 2022-01-01
- Azure Active Directory 与 MVC,客户端和资源标识同一 2022-01-01
- 带问号的 nvarchar 列结果 2022-01-01
- Windows 喜欢在 LINUX 中使用 MONO 进行服务开发? 2022-01-01
- C# 通过连接字符串检索正确的 DbConnection 对象 2022-01-01
- 在 C# 中异步处理项目队列 2022-01-01
- 使用 rss + c# 2022-01-01