1

我在删除 vb .net 中的新行时遇到问题。例如:

甲乙丙

_
_

我试过这段代码

替换(字符串,chr(13),“*”)

结果是

A*
*
B *
C

我想像这样替换 chr(13) 后删除新行:

A**B*C

我使用此代码来帮助我使用 vigenere 密码进行文本加密 请帮助我....

4

3 回答 3

4

也删除换行符 Chr(10),请参阅此链接以获取说明。简而言之,windows 行结尾由回车和换行组成。并在 VB 中用VbCrLf常数表示。

于 2013-07-26T05:18:14.917 回答
4

The following string contains carriage returns. In VB they are declared as "vbCrLf", so you can remove them with

a = Replace(a, vbCrLf, "")
于 2013-07-26T05:22:37.783 回答
0

Example you have entered a string text like the one below:

Hi
I
Am
a .Net Developer...

You may do like this.

var c = txtWords.Text.Replace(@"\n","");

or

var c = txtWords.Text.Replace("\\n","");
于 2013-07-26T05:22:03.400 回答