[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Why is string.find() giving wrong output?
- From: rahul sharma <rahulatgslab@...>
- Date: Mon, 30 Jan 2012 19:47:43 +0530
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??