|
|
||
|
On Tue, Dec 16, 2008 at 1:33 PM, <adimurthy.sriramulu@wipro.com> wrote:
>
> Hi,
>
> I am using the function string.find(string.sub("12 N Y",1,2),slot) in my
> design.
>
If it's only numbers, you could say
tonumber(string.sub("12 N Y",1,2)) == tonumber(slot)
Robby