Need to extract the initial character from a Korean word in MS-Excel and MS-Access. When I use Left("한글",1) it will return the first syllable i.e 한, what I need is the initial character i.e ㅎ . Is there a function to do this? or at least an idiom?

If you know how to get the Unicode value from the String I'd be able to work it out from there but I'm sure I'd be reinventing the wheel. (yet again)

link|improve this question
feedback

4 Answers

up vote 1 down vote accepted

I think what you are looking for is a Byte Array Dim aByte() as byte aByte="한글" should give you the two unicode values for each character in the string

link|improve this answer
Thanks, It works, I was confused by the byte ordering at first. Doh! – 10ToedSloth Nov 16 '09 at 16:38
feedback

Disclaimer: I know little about Access or VBA, but what you're having is a generic Unicode problem, it's not specific to those tools. I retagged your question to add tags related to this issue.

Access is doing the right thing by returning 한, it is indeed the first character of that two-character string. What you want here is the canonical decomposition of this hangul in its constituent jamos, also known as Normalization Form D (NFD), for “decomposed”. The NFD form is ᄒ ‌ᅡ ‌ᆫ, of which the first character is what you want.

Note also that as per your example, you seem to want a function to return the equivalent hangul (ㅎ) for the jamo (ᄒ) – there really are two different code points because they represent different semantic units (a full-fledged hangul syllable, or a part of a hangul). There is no pre-defined mapping from the former to the latter, you could write a small function to that effect, as the number of jamos is limited to a few dozens (the real work is done in the first function, NFD).

link|improve this answer
Hi Arthur, yes I am looking for the initial jamo (i.e. initial character) not the initial Hangul Syllable. The mapping is not difficult I just don't know how to correctly get the unicode value from the string in VBA. Initial character. Mapping can be found using (UnicodeValue - 44032) / 588. Cheers – 10ToedSloth Nov 16 '09 at 10:36
Yes, for hanguls, you can do that algorithmically, too. In fact, that's how it's specified in the standard (unicode.org/versions/Unicode5.2.0/ch03.pdf section 3.12, starting p. 104). – Arthur Reutenauer Nov 16 '09 at 10:40
+1 Thanks again, for the Unicode reference. – 10ToedSloth Nov 16 '09 at 10:49
feedback

Adding to Arthur's excellent answer, I want to point out that extracting jamo from hangeul syllables is very straightforward from the standard. While the solution isn't specific to Excel or Access (it's a Python module), it only involves arithmetic expressions so it should be easily translated to other languages. The formulas, as can be seen, are identical to those in page 109 of the standard. The decomposition is returned as a tuple of integers encoded strings, which can be easily verified to correspond to the Hangul Jamo Code Chart.

# -*- encoding: utf-8 -*-

SBase = 0xAC00
LBase = 0x1100
VBase = 0x1161
TBase = 0x11A7
SCount = 11172
LCount = 19
VCount = 21
TCount = 28
NCount = VCount * TCount


def decompose(syllable):
    global SBase, LBase, VBase, TBase, SCount, LCount, VCount, TCount, NCount

    S = ord(syllable)
    SIndex = S - SBase
    L = LBase + SIndex / NCount
    V = VBase + (SIndex % NCount) / TCount
    T = TBase + SIndex % TCount

    if T == TBase:
        result = (L,V)
    else:
        result = (L,V,T)

    return tuple(map(unichr, result))

if __name__ == '__main__':
    test_values = u'항가있닭넓짧'

    for syllable in test_values:
        print syllable, ':',
        for s in decompose(syllable): print s,
        print

This is the output in my console:

항 : ᄒ ᅡ ᆼ
가 : ᄀ ᅡ
있 : ᄋ ᅵ ᆻ
닭 : ᄃ ᅡ ᆰ
넓 : ᄂ ᅥ ᆲ
짧 : ᄍ ᅡ ᆲ
link|improve this answer
Thanks Jong Bor, that works well. I changed the output in your example to return an encoded string. i.e. if T == TBase: u = unichr(L) + ' ' + unichr(V) else: u = unichr(L) + ' ' + unichr(V) + ' ' + unichr(T) u.encode('utf-8') return(u) if name == 'main': print (u'항'), ' --> ', decompose(u'항') print (u'가'), ' --> ', decompose(u'가') – 10ToedSloth Dec 26 '11 at 12:04
@10ToedSloth Your change makes sense since decompose takes an encoded string as a parameter, so I modified my code accordingly. I'm glad that you took the time to review the answer for a question you made two years ago :) – Jong Bor Dec 27 '11 at 1:23
feedback

I assume you got what you needed, but it seems rather convoluted. I don't know anything about this, but recently did some investigating of handling Unicode, and looked into all the string Byte functions, such as LeftB(), RightB(), InputB(), InStrB(), LenB(), AscB(), ChrB() and MidB(), and there's also StrConv(), which has a vbUnicode argument. These are all functions that I'd think would be used in any double-byte context, but then, I don't work in that environment so might be missing something very important.

link|improve this answer
Yeah the manual syllable decomposition does seem convoluted, I really expect there is a more standardised method. Charles's suggestion of just dropping it into a byte array works fine. But as you mentioned the same could be achieved using functions like AscB(), etc . – 10ToedSloth Nov 17 '09 at 5:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.