我在删除 vb .net 中的新行时遇到问题。例如:
甲乙丙
_
_
我试过这段代码
替换(字符串,chr(13),“*”)
结果是
A*
*
B *
C
我想像这样替换 chr(13) 后删除新行:
A**B*C
我使用此代码来帮助我使用 vigenere 密码进行文本加密 请帮助我....
我在删除 vb .net 中的新行时遇到问题。例如:
甲乙丙
_
_
我试过这段代码
替换(字符串,chr(13),“*”)
结果是
A*
*
B *
C
我想像这样替换 chr(13) 后删除新行:
A**B*C
我使用此代码来帮助我使用 vigenere 密码进行文本加密 请帮助我....
The following string contains carriage returns. In VB they are declared as "vbCrLf", so you can remove them with
a = Replace(a, vbCrLf, "")
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","");