将粘贴的文本转换为单行

发布于 2024-12-11 06:40:26 字数 146 浏览 0 评论 0 原文

所以我有一个文本框,我想在其中存储地址,但作为单行。为了获取其中的地址,我总是会进行复制和粘贴,问题是我从哪里复制它,它是多行的,所以当我粘贴它时,它只显示第一行。我知道我可以将其更改为多行文本框,然后使用退格键将其变为一行,但我只是想知道是否有一种方法可以用代码将其变为单行。

So I have a textbox where I want an address to be stored, but as a single line. To get the address in there I will always do a copy and paste, and the issue is that where I copy it from, it is multiline, so when I paste it, it only shows the first line. I know I can change it into a multiline textbox and then use backspace to make it one line, but I'm just wondering if there is a way I can just make it single line with code.

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

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

发布评论

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

评论(3

生活了然无味 2024-12-18 06:40:26
textBox1.Text = Clipboard.GetText().Replace(Environment.NewLine, " ");
textBox1.Text = Clipboard.GetText().Replace(Environment.NewLine, " ");
舟遥客 2024-12-18 06:40:26

尝试,

textBox1.Text = textBox2.Text.Replace("\r\n", " ");

编辑:

String singleLine=multiLine.Replace("\r\n"," ");

Try,

textBox1.Text = textBox2.Text.Replace("\r\n", " ");

EDIT:

String singleLine=multiLine.Replace("\r\n"," ");
錯遇了你 2024-12-18 06:40:26

您可以从输入中删除“\n”字符和“\r”。

You can remove '\n' characters from the input and '\r' as well.

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