I am developing web app using Scala and Lift framework. I have record in DB which contains html perex of page

<b>Hi all, this is perex</b>

And in one scenario I need to print to user this perex, but without html tags.

Hi all, this is perex

It is possible to do this in Scala? Because I tried to look with Google, but with no success.

thanks for all replies.

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

If the string is valid XML then you can use:

scala.xml.XML.loadString("<b>Hi all, this is parex</b>").text

If it's not valid XML, then you can use scala.util.matching.Regex or an HTML parsing library like http://jsoup.org/

link|improve this answer
I am using your solution right now and it seems it works. I had to wrap my String to <span> tag to work even with "<b>Hi</b> name" string. Thanks a lot. – kajo Mar 22 '11 at 18:33
I'd rather use scala.xml.parsing.XhtmlParser to parse the HTML. Better chance of parsing it correctly. – Daniel C. Sobral Mar 22 '11 at 19:51
feedback

Your Answer

 
or
required, but never shown

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