--- In [email protected], "entropyreduction" <alancampbelllists+ya...@...> wrote: > > --- In [email protected], "Sheri" <sherip99@> wrote: > > It would be nice to be able to append using some form of the numeric value. > > Eg: > > > > local > > ustring=unicode.char(0x00BC)++unicode.char(0x0020)++unicode.char(0x2153)..etc... > > > or possibly: > > > ustring=unicode.char(0x00BC)++"\x20"++unicode.char(0x2153)..etc.. > > I can't do that without getting access to the ++ operator. > > Unless I'm asleep or in some other fuzzy state, which is > possible, I think that would require more work from Bruce. > Otherwise you're just concatenating two handles, which ain;t > gonna do anyone any good.
OK, then if you feel like pursuing, it could be something like: local ustring=unicode.append_fromnum(0x00BC,0x0020,0x215...) Regards, Sheri
