Re: about HTML

2014-03-13 Thread Yonghua Peng
what does it mean "take action on it"? thanks. Looking for openstack and python developers. Please check: http://www.nsbeta.info/jobs Thursday, March 13, 2014 10:33 AM -03:00 from Ariel Hosid : >Hi there! >I am needing a module to parse a HTML page and to take action on it.  >Any idea? > >--

Re: Search one character against one string

2014-03-13 Thread Uri Guttman
On 03/12/2014 05:14 AM, Alex Chiang wrote: Thanks for your reply. I know the built-in index function, but I just can't figure out why it gives me the answer I don't expect :D you shouldn't expect some answer without checking the documentation. index is well documented so you must be looking

Re: about HTML

2014-03-13 Thread Rob Dixon
On 13/03/2014 18:13, Ariel Hosid wrote: 2014-03-13 10:43 GMT-03:00 Rob Dixon On 13/03/2014 18:13, Ariel Hosid wrote: On 13/03/2014 13:33, Ariel Hosid wrote: Hi there! I am needing a module to parse a HTML page and to take action on it. Any idea? There are s

Re: about HTML

2014-03-13 Thread Octavian Rasnita
HTML::TreeBuilder++ From: Ariel Hosid I'm using the Perl Package Manager and couldn't find the HTML::TreeBuilder module, but I found the HTML::Element-Library module. Does it include the TreeBuilder module functionality? HTML::TreeBuilder uses HTML::Element and HTML::Parser and a few ot

Re: about HTML

2014-03-13 Thread Ariel Hosid
I'm using the Perl Package Manager and couldn't find the HTML::TreeBuilder module, but I found the HTML::Element-Library module. Does it include the TreeBuilder module functionality? 2014-03-13 10:43 GMT-03:00 Rob Dixon : > On 13/03/2014 13:33, Ariel Hosid wrote: > >> Hi there! >> I am needing a

Re: Search one character against one string

2014-03-13 Thread Alex Chiang
Thanks for your reply. I know the built-in index function, but I just can't figure out why it gives me the answer I don't expect :D --- Regards ! Alex Chiang

Re: Build Perl keyword hash

2014-03-13 Thread Alex Chiang
Yes. Thanks for your help. How do you copy and paste from browser ? When I tried this, all I got is hyperlink and metadata. --- Regards ! Alex Chiang

Re: Build Perl keyword hash

2014-03-13 Thread Rob Dixon
On 13/03/2014 13:56, Alex Chiang wrote: Yes. Thanks for your help. How do you copy and paste from browser ? When I tried this, all I got is hyperlink and metadata. You probably need to use a decent browser. Are you using Internet Explorer? Give Firefox or Chrome a try. Rob --- This emai

Re: Build Perl keyword hash

2014-03-13 Thread Brian Fraser
On Thu, Mar 13, 2014 at 2:29 PM, Alex Chiang wrote: > Hi all, > > I'd like to build a hash mapping from "keyword" => value. By keyword, I > mean all reversed words in http://learn.perl.org/docs/keywords.html. Do > you guys know any csv or text file containing all these words? > I don't want to har

Re: Build Perl keyword hash

2014-03-13 Thread Rob Dixon
On 13/03/2014 13:29, Alex Chiang wrote: I'd like to build a hash mapping from "keyword" => value. By keyword, I mean all reversed words in http://learn.perl.org/docs/keywords.html. Do you guys know any csv or text file containing all these words? I don't want to hard code all these reversed word

Re: about HTML

2014-03-13 Thread Rob Dixon
On 13/03/2014 13:33, Ariel Hosid wrote: Hi there! I am needing a module to parse a HTML page and to take action on it. Any idea? -- Ariel There are several candidates. I would look at HTML::TreeBuilder first. Rob --- This email is free from viruses and malware because avast! Antivirus

about HTML

2014-03-13 Thread Ariel Hosid
Hi there! I am needing a module to parse a HTML page and to take action on it. Any idea? -- Ariel

Build Perl keyword hash

2014-03-13 Thread Alex Chiang
Hi all, I'd like to build a hash mapping from "keyword" => value. By keyword, I mean all reversed words in http://learn.perl.org/docs/keywords.html. Do you guys know any csv or text file containing all these words? I don't want to hard code all these reversed words into list, then creating ha

Re: Search one character against one string

2014-03-13 Thread Alex Chiang
Thanks all, and thanks Nathan for your detailed explanation. Now I know the list got flattened before passing into subroutine. Cheers. --- Regards ! Alex Chiang