We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b31b5e3 commit f68dd65Copy full SHA for f68dd65
unicodetools/src/main/java/org/unicode/draft/ReadTGHSet.java
@@ -9,6 +9,21 @@
9
public class ReadTGHSet {
10
public static void main(String[] args) throws FileNotFoundException {
11
UnicodeSet set = new UnicodeSet();
12
+ // tgh2013-8105.txt file from Ken Lunde with lines like the following,
13
+ // with tabs between fields.
14
+ // # URO (7,832)
15
+ // U+4E00 1
16
+ // U+4E01 5
17
+ // U+4E03 7
18
+ // U+4E07 35
19
+ // ...
20
+ // # Extension A (77)
21
+ // U+3447 6602
22
+ // U+344A 6700
23
24
+ // # Extension E (108)
25
+ // U+2B8B8 7019
26
+ // U+2BAC7 7519
27
Scanner sc =
28
new Scanner(new File("/usr/local/google/home/mscherer/Downloads/tgh2013-8105.txt"));
29
while (sc.hasNextLine()) {
0 commit comments