Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Im currently loading some text through XML via my doc class - this text contains \n tags

XML example:

What im looking to do is replace \n in my string with

I've tried a few things:

string = string.split("\n").join('<br/>');

and

string = string.replace("\n","<br/>");

However tracing out string afterwards, or just seeing what myTextField.htmlText = string; displays, I still see the \n tags

Any ideas?

Code illustrated:

// The string which contains the XML loaded content
var string:String;

var myTextField:TextField = new TextField();
myTextField.defaultTextFormat = myFormat;
myTextField.width = 300;
myTextField.border = false;
myTextField.embedFonts = true;
myTextField.multiline = true;
myTextField.wordWrap = true;
myTextField.selectable = false;

myTextField.htmlText = string;

addChild(myTextField);
share|improve this question
Maybe try setting a height? Say 200 or something as an example. – Marty Wallace May 13 '11 at 12:29
1  
When you say you still see the '\n' tags, you mean it has newlines, right? It's not literally "\n", is it? If it is, try .replace("\\n", "<br/>"); ? – izb May 13 '11 at 12:32
What I mean is that \n is actually outputting as apart of my text and not being replaced by a <br/> which would instead result as a break in my text – user1231561 May 13 '11 at 12:45
1  
.replace("\\n", "<br/>"); did the trick! So I was basically missing a "\" weird . Thanks so much izb! – user1231561 May 13 '11 at 12:47
Actually it seemed to work fine in a case with only one \n however if there are several \n in the same string it will only replace the first one? – user1231561 May 13 '11 at 13:11
show 1 more comment

2 Answers

up vote 2 down vote accepted

You want:

string = string.replace(/\n/g, "<br>");

This will replace all newlines with <br>.

share|improve this answer

I believe you want:

str = str.replace("\\n", "\n");

OR the following applies to all instances:

str = str.split("\\n").join("\n");

Try that

share|improve this answer
You'll need to escape the \ in the \n – AJ. Oct 9 '12 at 13:48
Hi Lex, and welcome to SO. We don't use signatures here, so I've trimmed that from your answer. Also, if you look at the comments below, you'll see the asker already found a solution to this question, they just neglected to mark it off as 'answered'. – JcFx Oct 9 '12 at 13:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.