[
https://issues.apache.org/jira/browse/TEXT-120?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Pascal Schumacher resolved TEXT-120.
------------------------------------
Resolution: Fixed
Assignee: Pascal Schumacher
Fix Version/s: 1.4
Fixed. Thanks for reporting!
> StringEscapeUtils#unescapeJson does not unescape double quotes and forward
> slash
> --------------------------------------------------------------------------------
>
> Key: TEXT-120
> URL: https://issues.apache.org/jira/browse/TEXT-120
> Project: Commons Text
> Issue Type: Bug
> Affects Versions: 1.2
> Reporter: Pedro Robles
> Assignee: Pascal Schumacher
> Priority: Major
> Fix For: 1.4
>
>
> Here's a unit test to show how the escape/unescape cycle doesn't return
> expected String.
>
> {code:java}
> @Test
> public void testUnscape() {
> String unscapeString = "double quote: \" and a forward slash: /";
> String escapeString = StringEscapeUtils.escapeJson(unscapeString);
> assertEquals("double quote: \" and a forward slash: \/", escapeString);
> assertEquals(unscapeString, StringEscapeUtils.unescapeJson(escapeString));
> }
> {code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)