Re: [NTG-context] Unicode text conversion

2017-06-15 Thread Procházka Lukáš Ing .
Hello, thank you for the answers. So - IMHO the following code should provide CP-1250 to UTF-8 conversion: \enableregime[cp1250] \startluacode local cvt = function(fn) print(fn) local str = io.loaddata(fn) --print(str) str = regimes.toregime("utf", str, "?") io.saved

Re: [NTG-context] Unicode text conversion

2017-06-14 Thread Pablo Rodriguez
On 06/14/2017 02:31 PM, Procházka Lukáš Ing. wrote: > OK, thank you; > I deduce: > > regimes.toregime('8859-1',"abcde Ä","?") > > means actually: > > - "convert from the current regime" (be e.g. UTF8) > - regimes.toregime(, , > ) Hi Lukas, -- Usage: -- regimes.toregime(, , )) From http://wi

Re: [NTG-context] Unicode text conversion

2017-06-14 Thread Procházka Lukáš Ing .
OK, thank you; I deduce: regimes.toregime('8859-1',"abcde Ä","?") means actually: - "convert from the current regime" (be e.g. UTF8) - regimes.toregime(, , ) Lukas On Wed, 14 Jun 2017 14:21:47 +0200, Hans Hagen wrote: On 6/14/2017 2:07 PM, Procházka Lukáš Ing. wrote: Hello, is there al

Re: [NTG-context] Unicode text conversion

2017-06-14 Thread Hans Hagen
On 6/14/2017 2:07 PM, Procházka Lukáš Ing. wrote: Hello, is there also a way to convert CP1250 to UTF8 and vice versa? regimes.toregime('8859-1',"abcde Ä","?") there's also fromregime Best regards, Lukas On Fri, 27 Jan 2017 14:08:42 +0100, Hans Hagen wrote: On 1/27/2017 1:48 PM, Proch

Re: [NTG-context] Unicode text conversion

2017-06-14 Thread Procházka Lukáš Ing .
Hello, is there also a way to convert CP1250 to UTF8 and vice versa? Best regards, Lukas On Fri, 27 Jan 2017 14:08:42 +0100, Hans Hagen wrote: On 1/27/2017 1:48 PM, Procházka Lukáš Ing. wrote: Hello, does ConTeXt contain a built-in Lua conversion routine to convert text in UTF-16 (and ot

Re: [NTG-context] Unicode text conversion

2017-01-27 Thread Procházka Lukáš Ing .
Hello Hans, that's it, thank you! Best regards, Lukas On Fri, 27 Jan 2017 14:08:42 +0100, Hans Hagen wrote: utf16_to_utf8_le -- Ing. Lukáš Procházka | mailto:l...@pontex.cz Pontex s. r. o. | mailto:pon...@pontex.cz | http://www.pontex.cz | IDDS:nrpt3sn Bezová 1658 147 14 Praha 4

Re: [NTG-context] Unicode text conversion

2017-01-27 Thread Hans Hagen
On 1/27/2017 1:48 PM, Procházka Lukáš Ing. wrote: Hello, does ConTeXt contain a built-in Lua conversion routine to convert text in UTF-16 (and others) to UTF-8 string? Something like: \startluacode local str = "A unicode string" -- Or e.g. string loaded from a file str = convert(str,

[NTG-context] Unicode text conversion

2017-01-27 Thread Procházka Lukáš Ing .
Hello, does ConTeXt contain a built-in Lua conversion routine to convert text in UTF-16 (and others) to UTF-8 string? Something like: \startluacode local str = "A unicode string" -- Or e.g. string loaded from a file str = convert(str, "utf16", "utf8") context(str) \stopuacode