+ Reply to Thread
Results 1 to 3 of 3

Unicode Help

Hybrid View

  1. #1
    Registered User
    Join Date
    11-10-2004
    Location
    India
    Posts
    40

    Question Unicode Help

    Hi All,

    I need a help in wittting a fucntion. I want to write a function to parse the contents in cells which has both english character set and korean character set.I need to seperate the english character set and i have to enclose some delmiter between the korean character set.How can identfy where the korean character set starts ?

    Thanks in advance
    Xcelion

  2. #2
    Tom Ogilvy
    Guest

    Re: Unicode Help

    I don't have any experience with what you describe, but you can select the
    cell in question and run this code and it might give you some insight into
    what you have: (the output goes to a new sheet).

    Sub ExamineActiveCell()
    Set Sh = ActiveSheet
    Set sh1 = Worksheets.Add(After:=Worksheets(Worksheets.Count))
    Sh.Activate
    For i = 1 To Len(ActiveCell)
    sh1.Range("A1:L1").Value = _
    Array("Char", "Code", _
    "Name", "FontStyle", "Size", "Strikethrough", _
    "Superscript", "Subscript", "OutlineFont", "Shadow", _
    "Underline", "ColorIndex")
    With ActiveCell.Characters(Start:=i, Length:=1)
    sh1.Cells(i + 1, 1) = .Text
    sh1.Cells(i + 1, 2) = AscW(.Text)
    With .Font
    sh1.Cells(i + 1, 3) = .Name
    sh1.Cells(i + 1, 4) = .FontStyle
    sh1.Cells(i + 1, 5) = .Size
    sh1.Cells(i + 1, 6) = .Strikethrough
    sh1.Cells(i + 1, 7) = .Superscript
    sh1.Cells(i + 1, 8) = .Subscript
    sh1.Cells(i + 1, 9) = .OutlineFont
    sh1.Cells(i + 1, 10) = .Shadow
    sh1.Cells(i + 1, 11) = .Underline
    sh1.Cells(i + 1, 12) = .ColorIndex
    End With
    End With
    Next
    End Sub
    --
    Regards,
    Tom Ogilvy

    "xcelion" <xcelion.1ud3id_1125043524.6681@excelforum-nospam.com> wrote in
    message news:xcelion.1ud3id_1125043524.6681@excelforum-nospam.com...
    >
    > Hi All,
    >
    > I need a help in wittting a fucntion. I want to write a function to
    > parse the contents in cells which has both english character set and
    > korean character set.I need to seperate the english character set and i
    > have to enclose some delmiter between the korean character set.How can
    > identfy where the korean character set starts ?
    >
    > Thanks in advance
    > Xcelion
    >
    >
    > --
    > xcelion
    > ------------------------------------------------------------------------
    > xcelion's Profile:

    http://www.excelforum.com/member.php...o&userid=16287
    > View this thread: http://www.excelforum.com/showthread...hreadid=399376
    >




  3. #3
    Registered User
    Join Date
    11-10-2004
    Location
    India
    Posts
    40

    Thanks Tom

    Thanks Tom,
    Thanks for your reply.I couldn't check the forumn for last few days.Sorry for the late reply

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1