5

I am trying to add korean character in a JJT file :

| < #XCHARSET :
        ("_latin" | "_unicode" | "_kanjisjis" | "_graphic" | "national" (<WHITESPACE>)+ ("character" | "char"))
        (<WHITESPACE>)*
       >
| < #XCHARSET2 :
        ("_latin" | "_unicode" | "_kanjisjis" | "_graphic" | "_kanji1")
        (<WHITESPACE>)*
       >

How to define korean character to this. I am new to parsing so I am not sure ho to add that in the charset. Can someone please help. Do I have to add _korean or is there another keyword to it?

hydra123
  • 337
  • 5
  • 14

1 Answers1

0

Did you try adding

options {
  UNICODE_INPUT=true;
}

to your header ?

diginoise
  • 7,352
  • 2
  • 31
  • 39