gpt4 book ai didi

java - 将带有 unicode 转义字符的字符串转换为普通字符串(不带转义字符)

转载 作者:行者123 更新时间:2023-12-04 06:10:36 25 4
gpt4 key购买 nike

是否已经做了一些事情来做以下事情。我需要的是一个已经实现 的实用程序类convertEscapedUTFStringToNormalString 对于这个例子,或者如果没有完成什么,那么我该怎么做?

@Test
public void testConvertEscapedUTFStringToNormalString() {
String expected = "Hello World!";

String escaped = "Hello World\\u0021";
String unescaped = convertEscapedUTFStringToNormalString(escaped);

assertEquals(expected, unescaped);
}



private String convertEscapedUTFStringToNormalString(String escaped) {
//TODO: unimplemented
}

最佳答案

你看过 Apache Commons 吗?我认为他们的 StringEscapeUtils.unescapeJava 可以满足您的需求。 ( http://commons.apache.org/lang/api-2.5/org/apache/commons/lang/StringEscapeUtils.html )

关于java - 将带有 unicode 转义字符的字符串转换为普通字符串(不带转义字符),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7828590/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com