lua-users home
lua-l archive

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



D[

----- Original Message -----
From: lua-l-bounces@lists.lua.org <lua-l-bounces@lists.lua.org>
To: Lua mailing list <lua-l@lists.lua.org>
Sent: Sun Jul 24 09:03:32 2011
Subject: Re: [5.1.4] "attempt to index global 'data' (a nil value)

On Sun, Jul 24, 2011 at 1:56 PM, Gilles Ganault <gilles.ganault@free.fr> wrote:
> Hello
>
> Using a Lua script on XP, I need to open an HTML file and extract
> hyperlinks...
> ===========
> data = io.open("C:\places.txt","r")
> for line in data:lines() do
>      for token in string.gmatch(line, '<a
> href="(/places/.+?\.php)">') do
>              print(token)
>      end
> end
> data:close()
> ===========
>
> ... but it fails with the following error message:
> ===========
> lua5.1.exe: places.lua:2: attempt to index global 'data' (a nil value)
> ===========
>
> Any idea what is wrong with the above?

'data' is nil because io.open returns nil on failure. I would suggest
the following first line:

data = assert(io.open([[C:\places.txt]],"r"))

Note two things:
1) The call to assert to raise any error relating to not being able to
open the file.
2) Using [[...]]] instead of "...", as the filename contains slashes,
so either you need to escape each one ("C:\\places.txt") or use
[[...]] delimiters.


This communication is for informational purposes only. It is not
intended as an offer or solicitation for the purchase or sale of
any financial instrument or as an official confirmation of any
transaction. All market prices, data and other information are not
warranted as to completeness or accuracy and are subject to change
without notice. Any comments or statements made herein do not
necessarily reflect those of JPMorgan Chase & Co., its subsidiaries
and affiliates.

This transmission may contain information that is privileged,
confidential, legally privileged, and/or exempt from disclosure
under applicable law. If you are not the intended recipient, you
are hereby notified that any disclosure, copying, distribution, or
use of the information contained herein (including any reliance
thereon) is STRICTLY PROHIBITED. Although this transmission and any
attachments are believed to be free of any virus or other defect
that might affect any computer system into which it is received and
opened, it is the responsibility of the recipient to ensure that it
is virus free and no responsibility is accepted by JPMorgan Chase &
Co., its subsidiaries and affiliates, as applicable, for any loss
or damage arising in any way from its use. If you received this
transmission in error, please immediately contact the sender and
destroy the material in its entirety, whether in electronic or hard
copy format. Thank you.

Please refer to http://www.jpmorgan.com/pages/disclosures for
disclosures relating to European legal entities.