lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


Le 2021-01-18 11:54, Egor Skriptunoff a écrit :
Any feedback will be appreciated !

The website looks nice! :-)

I see you have removed os.setlocale() from the standard library.

How to switch between C locale and national locale?
Which locale is used in string.upper(), pattern "%u" and "str1 < str2"
?
How are char intervals interpreted in patterns (such as "[A-Z]" but
with unicode symbols)?

Thank you for the feedback on the website :)

LuaRT does not use the concept of C locale.
All the necessary configuration is done during the 'sys' module initialization for writing UTF8 characters to the console (with some limits for some region, see discussion on the console limitation on Windows for some language).

String.upper and string.lower uses the Windows API which is quite good for some accentued characters. Char intervals are treated the same. An accentued character (for example "à") is not in the interval [A-Z] (which includes letters, but not accentued letters).

Samir