如何从 C# 中的字符串开头删除空格、多个空格或制表符

发布于 2024-12-01 08:22:58 字数 296 浏览 0 评论 0原文

我读取的文件中有字符串。有些开头有空格或制表符。有没有一种简单的方法可以删除空格和制表符(空白内容)?

例如,

var abc = "   def";

我想要的是删除“def”之前的内容。

谢谢,

更新:我相信这是正确的答案:

char[] arr = new char[] { '\t', ' ' }; // Trim these characters
text = text.TrimStart(arr);

I have strings in a file that I read. Some have space(s) or tabs at the start. Is there an easy way I can remove the space and tab (whitespace stuff)?

For example

var abc = "   def";

What I want is to remove the things before the "def".

thanks,

Update: I believe this is the correct answer:

char[] arr = new char[] { '\t', ' ' }; // Trim these characters
text = text.TrimStart(arr);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

向日葵 2024-12-08 08:22:58

使用 string.TrimStart()

var result = abc.TrimStart();

Use string.TrimStart():

var result = abc.TrimStart();
若无相欠,怎会相见 2024-12-08 08:22:58

使用内置的 String 方法。

abc.Trim()

Use the built in String methods.

abc.Trim()

御守 2024-12-08 08:22:58

只需使用 Trim 方法

abc.Trim()

Just use the Trim method

abc.Trim()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文