lua-users home
lua-l archive

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


Hi,

I have lua-5.1.4 installed. I fired the following commands:-
> a="0x12,0x23,0x1e"
> string.find(a,',',1)
> print(string.find(a,',',1))
5 5
> b="0x12.0x23.0x1e"
> print(string.find(a,'.',1))
1 1
>
Why is it giving such a wrong answer??