1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.apache.commons.text.translate;
18
19 import java.io.IOException;
20 import java.io.Writer;
21
22
23
24
25
26
27
28
29 public class UnicodeUnescaper extends CharSequenceTranslator {
30
31
32
33
34 @Override
35 public int translate(final CharSequence input, final int index, final Writer out) throws IOException {
36 if (input.charAt(index) == '\\' && index + 1 < input.length() && input.charAt(index + 1) == 'u') {
37
38 int i = 2;
39 while (index + i < input.length() && input.charAt(index + i) == 'u') {
40 i++;
41 }
42
43 if (index + i < input.length() && input.charAt(index + i) == '+') {
44 i++;
45 }
46
47 if (index + i + 4 <= input.length()) {
48
49 final CharSequence unicode = input.subSequence(index + i, index + i + 4);
50
51 try {
52 final int value = Integer.parseInt(unicode.toString(), 16);
53 out.write((char) value);
54 } catch (final NumberFormatException nfe) {
55 throw new IllegalArgumentException("Unable to parse unicode value: " + unicode, nfe);
56 }
57 return i + 4;
58 }
59 throw new IllegalArgumentException("Less than 4 hex digits in unicode value: '" + input.subSequence(index, input.length())
60 + "' due to end of CharSequence");
61 }
62 return 0;
63 }
64 }