I store the htmlText property of a RichTextEditor in the database.

I retrieve it in another instance and I want to show the user the first line of it as plain text

So I let Flex handle the conversion by using a function like this

var editor:TextField = new TextField();
editor.htmlText = htmlTextFromDb;
var converted:String = editor.text;

However, the issue is that this conversion does not handle lines properly. I get everything in one line!

Lets say what I get from the database is this

<TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="Arial" SIZE="12" COLOR="#000000" LETTERSPACING="0" KERNING="0">This is line one</FONT></P></TEXTFORMAT><TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="Arial" SIZE="12" COLOR="#000000" LETTERSPACING="0" KERNING="0">This is line two</FONT></P></TEXTFORMAT>

As soon as I say editor.htmlText = htmlTextFromDb, editor.htmlText becomes

<TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="Arial" SIZE="12" COLOR="#000000" LETTERSPACING="0" KERNING="0">This is line oneThis is line two</FONT></P></TEXTFORMAT>

It acts as if new lines are not present.

How do I solve this?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

I would think about server side conversion of this HTML text.

But in AS only you could do it line by line by splitting on line break, then converting the line to text and after this concatenating all. A bit ugly, but should work.

var editor:TextField = new TextField();
var result:Array = new Array();
var input:Array = htmlTextFromDb.split(/\n/);
for each( var line:String in input) {
    editor.htmlText = line;
    result.push(editor.text);
}
var converted:String = result.join("\n");

edit

Replacing the tags with regular expression would be another way. First replace the closing paragraph </P> with a line break, and then remove all remaining tags.

var lnRegExp:RegExp = new RegExp("</P>", "g");
s = s.replace(lnRegExp, "\n");
var tagRegExp:RegExp = new RegExp("<([^>\\s]+)(\\s[^>]+)*>", "g");
trace(s.replace(tagRegExp, ""));
link|improve this answer
Sorry! It doesn't work. The problem is that htmlTextFromDb does not have \n's. From the looks of it, it uses <p> tags to handle new lines. – Ranhiru Cooray Jun 28 '11 at 10:16
Then your code snippet in your question is misleading, because you've posted your database output with a line break. – DanielB Jun 28 '11 at 10:18
Oops sorry! The line break was added for clarity! I'll fix that :) – Ranhiru Cooray Jun 28 '11 at 10:21
okay, here a regex solution. – DanielB Jun 28 '11 at 10:31
Hey thanx a lot! :) That did the trick – Ranhiru Cooray Jun 28 '11 at 12:14
feedback

Your Answer

 
or
required, but never shown

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