Logo

Programming-Idioms

History of Idiom 169 > diff from v32 to v33

Edit summary for version 33 by Kng:
New Lua implementation by user [Kng]

Version 32

2018-04-03, 08:07:08

Version 33

2018-04-03, 08:08:45

Idiom #169 String length

Assign to integer n the number of characters of string s.

This can be different from the number of bytes of s.

Idiom #169 String length

Assign to integer n the number of characters of string s.

This can be different from the number of bytes of s.

Extra Keywords
size
Extra Keywords
size
Code
local n = #s
Comments bubble
The amount of bytes in s
Doc URL
https://www.lua.org/manual/5.3/manual.html#3.4.7