Difference between revisions of "String.byte"

From OpenEUO
Jump to: navigation, search
(Created page with " string.byte (s [, i [, j]]) Returns the internal numerical codes of the characters s[i], s[i+1], ···, s[j]. The default value for i is 1; the default value for j is i. Note ...")
 
 
Line 3: Line 3:
  
 
Note that numerical codes are not necessarily portable across platforms. << Todo: test whether this returns OEM codepage value, ANSI value, or a unicode value>>
 
Note that numerical codes are not necessarily portable across platforms. << Todo: test whether this returns OEM codepage value, ANSI value, or a unicode value>>
 +
 +
[[String.char]]

Latest revision as of 12:27, 9 October 2010

string.byte (s [, i [, j]])

Returns the internal numerical codes of the characters s[i], s[i+1], ···, s[j]. The default value for i is 1; the default value for j is i.

Note that numerical codes are not necessarily portable across platforms. << Todo: test whether this returns OEM codepage value, ANSI value, or a unicode value>>

String.char