How to convert Html text to plain text in android?

30,908

Solution 1

I am giving my answer.

String mHtmlString = "<p class="MsoNormal" style="margin-bottom:10.5pt;text-align:justify;line-height: 10.5pt"><b><span style="font-size: 8.5pt; font-family: Arial, sans-serif;">Lorem Ipsum</span></b><span style="font-size: 8.5pt; font-family: Arial, sans-serif;"> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<o:p></o:p></span></p> <p class="MsoNormal" style="margin-bottom: 0.0001pt;"><span style="font-size: 8.5pt; font-family: Arial, sans-serif;"> </span><span style="font-family: Arial, sans-serif; font-size: 8.5pt; line-height: 10.5pt; text-align: justify;">Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.</span></p>";

Set Html text string on TextView:

TextView textView = (TextView) findViewById(R.id.textView);
textView.setText(Html.fromHtml(Html.fromHtml(mHtmlString).toString()));

Hope this will help you.

Solution 2

If you're looking for removing the html tags from html then use Jsoup( http://jsoup.org)

 String textFromHtml = Jsoup.parse(MY_HTML_STRING_HERE).text();
 TextView desc = (TextView) dialog.findViewById(R.id.description);
 desc.setText(textFromHtml);

Solution 3

This works for me:

    Spanned spanned = Html.fromHtml(textWithMarkup);
    char[] chars = new char[spanned.length()];
    TextUtils.getChars(spanned, 0, spanned.length(), chars, 0);
    String plainText = new String(chars);

I use it with simple tags like <b> and <i>. Did not test with more complex HTML.

Share:
30,908
Hiren Patel
Author by

Hiren Patel

Email: [email protected] Aim: To be ******.

Updated on November 06, 2020

Comments

  • Hiren Patel
    Hiren Patel over 3 years

    I required convert HTML text to Plain text in String form.

    String mHtmlString = "&lt;p class=&quot;MsoNormal&quot; style=&quot;margin-bottom:10.5pt;text-align:justify;line-height: 10.5pt&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-size: 8.5pt; font-family: Arial, sans-serif;&quot;&gt;Lorem Ipsum&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;font-size: 8.5pt; font-family: Arial, sans-serif;&quot;&gt;&amp;nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;&lt;span style=&quot;font-size: 8.5pt; font-family: Arial, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: Arial, sans-serif; font-size: 8.5pt; line-height: 10.5pt; text-align: justify;&quot;&gt;Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of &quot;de Finibus Bonorum et Malorum&quot; (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, &quot;Lorem ipsum dolor sit amet..&quot;, comes from a line in section 1.10.32.&lt;/span&gt;&lt;/p&gt;"
    

    What I did so far:

    TextView textView = (TextView) findViewById(R.id.textView);
    String plainText = Html.fromHtml(mHtmlString).toString()
    textView.setText(plainText);
    

    Bad luck, not working for nested HTML.

    Any help would appreciate.

  • Taylor Kline
    Taylor Kline almost 9 years
    Why did you nest Html.fromHtml()?
  • Anarchofascist
    Anarchofascist over 8 years
    ...if you don't mind your app expanding by half a meg
  • Hiren Patel
    Hiren Patel over 8 years
    @TaylorKline, Actually having nested HTML tags.
  • user3471194
    user3471194 almost 4 years
    Very nice and efficient solution, no library needed.
  • Lalit Jadav
    Lalit Jadav over 3 years
    With single I got : "&lt;div&gt;<div><div><div><div><div>&lt;/div&gt;</div></div‌​></div></div></div>" and with nested I got: ""............. therefore we ned to nest it
  • live-love
    live-love over 3 years
    This is much better than Html.fromHtml for more complex Html.
  • Mohd Sakib Syed
    Mohd Sakib Syed over 2 years
    Superb solution......Thanks a lot