Remove carriage return from string

前端 未结 9 2142
逝去的感伤
逝去的感伤 2021-01-03 17:41

I would like to insert the following into a string

some text here

some text here

some text here

9条回答
  •  不知归路
    2021-01-03 18:07

    You can also try:

    string res = string.Join("", sample.Split(Environment.NewLine.ToCharArray())
    

    Environment.NewLine should make it independent of platform.

    Recommended Read:

    Environment.NewLine Property

提交回复
热议问题