up vote 1 down vote favorite
share [g+] share [fb]

So, I have a bunch of strings like this: {\b\cf12 よろてそ } . I'm thinking I could iterate over each character and replace any unicode (Edit: Anything where AscW(char) > 127 or < 0) with a unicode escape code (\u###). However, I'm not sure how to programmatically do so. Any suggestions?

Clarification:

I have a string like {\b\cf12 よろてそ } and I want a string like {\b\cf12 [STUFF]}, where [STUFF] will display as よろてそ when I view the rtf text.

link|improve this question

75% accept rate
1  
In VB6 all strings a unicode, can you therefore clarify, do you believe you are accidentally reading something that is UTF-8 as if it were Unicode or a OEM page code? – AnthonyWJones Jun 18 '09 at 21:55
Also why do you want this? What are you going to do with strings with these escape codes in? – AnthonyWJones Jun 18 '09 at 21:56
@Anythony: I want this because I have some dynamically generated strings that are mixing RTF and unicode together, which cannot be displayed properly since RTF is an 8bit format. – Brian Jun 18 '09 at 22:01
As an aside, some of these strings are actually statically generated strings mixing unescaped unicode and rtf together. – Brian Jun 18 '09 at 22:02
feedback

2 Answers

up vote 2 down vote accepted

You can simply use the AscW() function to get the correct value:-

sRTF = "\u" & CStr(AscW(char))

Note unlike other escapes for unicode, RTF uses the decimal signed short int (2 bytes) representation for a unicode character. Which makes the conversion in VB6 really quite easy.

Edit

As MarkJ points out in a comment you would only do this for characters outside of 0-127 but then you would also need to give some other characters inside the 0-127 range special handling as well.

link|improve this answer
1  
You could do this for all char values above 127. Chars of 127 and below 127 are the same in all code pages and can probably be left alone – MarkJ Jun 19 '09 at 13:23
@MarkJ: Agreed, I should probably have pointed that out, the question uses 256 which is wrong. – AnthonyWJones Jun 19 '09 at 13:31
2  
Numbers below 0 also need to be converted. – Brian Jun 19 '09 at 14:57
@Brian: yep that too, adjust answer yet again :) – AnthonyWJones Jun 19 '09 at 16:08
Unicode codepoints are all > 0. If you are characters them as integers, then they will appear to be < 0 because VB6 doesn't have a 16-bit unsigned data type. Also, be sure to account for surrogate pairs – rpetrich Jun 27 '09 at 13:59
show 3 more comments
feedback

Another more roundabout way, would be to add the MSScript.OCX to the project and interface with VBScript's Escape function. For example

Sub main()
    Dim s As String
    s = ChrW$(&H3088) & ChrW$(&H308D) & ChrW$(&H3066) & ChrW$(&H305D)
    Debug.Print MyEscape(s)
End Sub

Function MyEscape(s As String) As String
    Dim scr As Object
    Set scr = CreateObject("MSScriptControl.ScriptControl")
    scr.Language = "VBScript"
    scr.Reset
    MyEscape = scr.eval("escape(" & dq(s) & ")")
End Function

Function dq(s)
    dq = Chr$(34) & s & Chr$(34)
End Function

The Main routine passes in the original Japanese characters and the debug output says:

%u3088%u308D%u3066%u305D

HTH

link|improve this answer
You should be aware that MS Script Control is not supported on Vista. – MarkJ Jul 2 '09 at 6:04
By "not supported" does that mean, "doesn't work" or "if it breaks, or breaks the O/S, no one's going to help me"? – boost Jul 2 '09 at 12:07
feedback

Your Answer

 
or
required, but never shown

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