Example usage for org.apache.commons.lang3.text.translate NumericEntityUnescaper NumericEntityUnescaper

List of usage examples for org.apache.commons.lang3.text.translate NumericEntityUnescaper NumericEntityUnescaper

Introduction

In this page you can find the example usage for org.apache.commons.lang3.text.translate NumericEntityUnescaper NumericEntityUnescaper.

Prototype

NumericEntityUnescaper

Source Link

Usage

From source file:org.miradi.utils.XmlUtilities2.java

public static String getWithUnescapedNumericEntities(String value) {
    AggregateTranslator translator = new AggregateTranslator(new NumericEntityUnescaper());

    return translator.translate(value);
}