1

I have a tag that looks like this:

<SomeTag V="Some Text Here"/>

If I wanted to add a carriage return between "Text" and "Here", how would I do that?

(Note: that the system that will receive this XML does not parse HTML in any way.)

Vaccano
  • 78,325
  • 149
  • 468
  • 850

2 Answers2

2

Have you tried checking this question: XML Carriage return encoding ?

It looks like using:

&#10;

seems to work for some users.

&#13;

might also work if that doesn't do the trick.

Community
  • 1
  • 1
summea
  • 7,390
  • 4
  • 32
  • 48
0

You could use its character entity:

&#10;
CSturgess
  • 1,547
  • 2
  • 13
  • 29
  • I believe carriage return is ` ` not ` `. ` ` is Line Feed. Check the ascii table [link](http://www.asciitable.com/). – Cacho Santa Jan 24 '12 at 20:16