lua-users home
lua-l archive

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


On Jan 3, 2008 6:42 PM, Erik von Reis <evonreis@mohrandassociates.com> wrote:
> My apologies if this is the wrong place to suggest this, but how about
> adding a keyed format specifier for string.format?
>
> To me,
>
> string.format("%(foo)s  = %(bar)d", {foo =  "variable", bar = 22})
>
> which I stole from Python, would be very handy and fits comfortably into
> the primitive way I think about Lua.

To complement the excellent replies you've received so far, here's a
relevant page from the Lua wiki:
http://lua-users.org/wiki/StringInterpolation

Alex