I have strings like:
Avery® Laser & Inkjet Self-Adhesive
I need to convert them to
Avery Laser & Inkjet Self-Adhesive.
I.e. remove special characters and convert html special chars to regular ones.
|
I have strings like:
I need to convert them to
I.e. remove special characters and convert html special chars to regular ones. |
|||
Avery® Laser & Inkjet Self-Adhesive First use Summarized:
..which produces Avery Laser & Inkjet Self-Adhesive (without the trailing dot as in your example, but that wasn't present in the original ;) ) That said, this however look like more a request to workaround than a request to solution. If you elaborate more about the functional requirement and/or where this string did originate, we may be able to provide the right solution. The |
||||
|
|
You can use the |
|||
|
|
|
Incase you want to mimic what php function htmlspecialchars_decode does use php function get_html_translation_table() to dump the table and then use the java code like,
|
|||
|
|
|
Maybe you can use something like:
in some project I did something like:
} |
|||||
|
new String(byte[], encodingName)andsomeString.getBytes(encodingName)to obtain the good chars. – helios Feb 18 '10 at 10:01