vote up 2 vote down star

Hi all,

I have a table field in MS Access 2003 which contains HTML encoded strings like this:

Ανταγωνισμός παγκοσμίου επιπέδου στην κατάρτι&#963

How can I decode this into "normal string", using MS Access?

Thanks in advance.

flag

4 Answers

vote up 2 vote down check

There's VB code for this available on the web that runs unchanged in Access. I've been using that code in a production Access app for several years now and have never had any problems with it.

link|flag
David, thank a lot, this is what I need! Now I can write VB code to read fields from table and store back the decoded values. – Dejan Sep 8 at 7:54
I tried this code, and it works perfectly, but as I wrote above in a comment, I just realized that I need a slightly different decoding. Not the special characters starting with "%", but with "&#" obviously. – Dejan Sep 8 at 11:20
vote up 0 vote down

Paste it into a file and save it as a HTML file, then open it in a browser.

I got some weird font like Greek or Arabic when I tried is I'm sure it'll make more sense to you than it does to me:

Ανταγωνισμός παγκοσμίου επιπέδου στην κατάρτισ

link|flag
You are right, this is Greek language and this should be my final output. I tried the code provided by David below, and this does what I asked - it decodes HTML encoded text. However, now I realized that I need something else. I need a VB code which will decode this language characters into proper text. – Dejan Sep 8 at 11:15
vote up 0 vote down

Here what I have so far. Using the Vb code provided here (BTW I could open that page only from IE7, not from FF 3.5 nor Chrome 2), I wrote following function:

Private Function UnicodeDecode(StringToDecode As String) As String
  Dim TempAns As String
  Dim CurChr As Integer
  CurChr = 1
  Do Until CurChr - 1 = Len(StringToDecode)
    Select Case Mid(StringToDecode, CurChr, 2)
    Case "&#"
      TempAns = TempAns & Chr(Mid(StringToDecode, CurChr + 2, 3))
       CurChr = CurChr + 5
    Case Else
      TempAns = TempAns & Mid(StringToDecode, CurChr, 1)
    End Select
    CurChr = CurChr + 1
  Loop
  UnicodeDecode = TempAns
End Function

Now, this works when you provide decimal value of the character up to 255. If I try to execute, for example:

Chr(338)

it fails with "Invalid procedure call or argument". I suppose MS Access supports only ISOlat1 standard by default, according to this reference. However, I need to convert unicode characters with decimal values above 913, which is ISOgrk3.

Does anybody knows how can I achieve that?

Thanks again.

link|flag
vote up 0 vote down

Here's an article that suggests a number of directions you might go in:

Using Unicode in Visual Basic 6 (Access's VBA is an superset of VB6)

Then you'll probably want to muck around with these Access/VBA functions:

  • StrConv()
  • AscB()
  • ChrB()

That doesn't resolve all of it, but that should give you a starting point.

Note for StrConv() the two constants for the 2nd argument, vbUnicode and vbFromUnicode, and the last, optional argument is the character set, which for Greek is given in the URL cited above as 161 (there doesn't seem to be a named constant for this -- the dbLangGreek constant returns ";LANGID=0x0408;CP=1253;COUNTRY=0").

It occurs to me that as long as you're limited to Greek for this, you might need to just set up an array that maps the characters to their corresponding numeric encoding. But I think it would be better to use a solution that handles more than one encoding.

Last of all, you might try going to this page on Michael Kaplan's old website, Trigeminal.com:

The Localized Website of Trigeminal Software, Inc.

...and scroll down to the end, "Miscellaneous I18n resources on this site." Much of that information is out of date for .NET and other programming, but it's still going to apply to VB6/Access VBA.

link|flag
Thanks again for the answer, that is a lot of resources, I'll check them out. – Dejan Sep 9 at 14:29

Your Answer

Get an OpenID
or

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