All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.polaris.core.string.XmlUnescape Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
package io.polaris.core.string;

/**
 * @author Qt
 * @since 1.8
 */
public class XmlUnescape extends StringReplacerChain {

	public XmlUnescape() {
		for (String[] escape : XmlEscape.BASIC_ESCAPE) {
			add(s -> s.replace(escape[1], escape[0]));
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy