Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Multi-lingual strings

From: louisaturk:coxinet at: 1-Aug-2002 16:17

Hi Greg, At 01:07 PM 8/1/2002 -0600, you wrote:
>Hi Louis > ><< How can I force rebol to treat strings from my multi-lingual word >processor >as strings? Rebol seems to be treating one of the multi-lingual characters >as a quotation mark. >> > >Does your word processor save Unicode format?
No, not unless you use Save as... (and I'm not).
>If so, that's probably the >issue. REBOL doesn't do Unicode yet. If that's not the case, can you post a >sample string and code that demonstrates the issue?
Here it is copied directly out of my word processor into Eudora. The copy and past process has changed it. If I now copy from Eudora and past back into my word processor it stays changed (does not convert back to my word processors format). x: make object! [ turk-num: "15898" freq-num: "251" strong-num: "5023" kata-yunani: to-binary { =A7 } transliteration: "tauta" akar: "" conjugation: make object! [voice: "active" mood: "" tense: "" number: person: ""] declension: make object! [case: "" gender: "" number: ""] kata-indonesia: "" arti: "" english-word: "" defination: "" ]
>> >> x: make object! [
[ turk-num: "15898" [ freq-num: "251" [ strong-num: "5023" [ kata-yunani: { { =A7 { } [ transliteration: "tauta" [ akar: "" [ conjugation: make object! [voice: "active" mood: "" tense: "" number: "" pers on: ""] [ declension: make object! [case: "" gender: "" number: ""] [ kata-indonesia: "" [ arti: "" [ english-word: "" [ defination: "" [ ]
>> >> x/kata-yunani
== "^/=A7^/"
>> >> x: make object! [
[ turk-num: "15898" [ freq-num: "251" [ strong-num: "5023" [ kata-yunani: { { =A7 { } [ transliteration: "tauta" [ akar: "" [ conjugation: make object! [voice: "active" mood: "" tense: "" number: "" person: ""] [ declension: make object! [case: "" gender: "" number: ""] [ kata-indonesia: "" [ arti: "" [ english-word: "" [ defination: "" [ ]
>> x/kata-yunani
== "^/=A7^/"
>> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> x: make object! [
[ turk-num: "15898" [ freq-num: "251" [ strong-num: "5023" [ kata-yunani: to-binary { { =A7 { } [ transliteration: "tauta" [ akar: "" [ conjugation: make object! [voice: "active" mood: "" tense: "" number: "" person: ""] [ declension: make object! [case: "" gender: "" number: ""] [ kata-indonesia: "" [ arti: "" [ english-word: "" [ defination: "" [ ]
>> x/kata-yunani
== #{0AA70A}
>> to-string x/kata-yunani
== "^/=A7^/"