2/14/14
How to remove html tags from a string? - Java Sample Programs
JAVA EXAMPLE PROGRAMS
0
Home Fundamentals Constructors Exception Handling Threads String Functions Generics Collections & Util Package Nested Classes Networking File I/O Operations Java Annotations JDBC Examples Java Interview Questions Java Interview Programs JUnit Search Algorithms Sorting Algorithms Data Structures JBoss Configurations
Program: How to remove html tags from a string?
Description: In case if a string contains html tags, then below example helps to trim the html tags from the string. The example uses regular expression to trim the html tags from the string.
Code: 1 2 3 4 5 6 7 8 9 1 0 1 1 p a c k a g ec o m . j a v a 2 n o v i c e . s t r i n g ; p u b l i cc l a s sM y H t m l T a g R e m o v e r{ p u b l i cs t a t i cv o i dm a i n ( S t r i n ga [ ] ) { S t r i n gt e x t=" < B > Id o n ' tw a n tt h i st ob eb o l d < \ \ B > " ; S y s t e m . o u t . p r i n t l n ( t e x t ) ; t e x t=t e x t . r e p l a c e A l l ( " \ \ < . * ? \ \ > " ," " ) ; S y s t e m . o u t . p r i n t l n ( t e x t ) ; }
?
Knowledge Center Can interface be final?
Example Output
<B>I don't want this to be bold<\B> I don't want this to be bold
No. We can not instantiate interfa order to make interfaces useful we subclasses. The final keyword mak unable to be extended.
Other String Function Examples
String Initialization example Copying charactor array to string example String concatination example String compare example Comparing StringBuffer with a String example Getting byte array from a string example String indexOf() example String lastIndexOf() example String startsWith() example String endsWith() example String split function example Extract char array from string example Replace characters in a string example Changing string case example Trim spaces in string example How to format a string? How to match a string with regular expression? How to remove multiple space in a string? How to remove non-ascii characters from a string? How to get line count from a string?
Find us on Facebook
Java Sample Programs
Like 1,608 people like Java Sample Programs
Facebook social plugin
Few Random Java Examples
What is generics wildcard argumen example. Write a program to find maximum words from a file.
Find out duplicate number between numbers.
Can you serialize static fields of a c
Placement Java Interview Question
How to convert byte array to inputs
How to get subset from sorted set?
www.java2novice.com/java_string_examples/remove-html-tags/
How implement bounded types (imp
1/2
2/14/14
How to remove html tags from a string? - Java Sample Programs
How to zip a single file?
How implement bounded types (imp interface) with generics?
About Author
My name is Nataraja Gootooru, programmer by profession and passionate about technologies. All examples given here are as simple as possible to help beginners. The source code is compiled and tested in my dev environment. If you come across any mistakes or bugs, please email me at [email protected] or you can comment on the page.
Most Visited Pages
Freshers Java Interview Questions How to Create Java Custom Exception How to convert byte array to inputstream? Java StringTokenizer With Multiple De-limiters Sample Code Java Constructor Chaining Examples Write a program to find out duplicate characters in a string.
Other Interesting Sites
Techie Park Wikipedia query2nataraj.blogspot.in
Write a program to find maximum repeated words from a file. How to read file content using byte array?
Reference: Java Platform Standard Ed. 6 - API Specification | Java is registered trademark of Oracle. Privacy Policy | Copyright 2013 by Nataraja Gootooru. All Rights Reserved.
www.java2novice.com/java_string_examples/remove-html-tags/
2/2