Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: vvv
  • Order by date
  1. vvv

    keys (array of hashes)

    I've solved the problem by setting %temp=%{$array[0]};
  2. vvv

    keys (array of hashes)

    I have array of hashes $array[0]{in}= $array[1]{in}= $array[2]{in}= $array[0]{out}= $array[1]{out}= $array[2]{out}= and want to do something like foreach $key ( keys($aaray[0]) ) {lalala} but keys require explicitly %HASH i've tried to make %temp=$array{0}; and then keys(%temp) but it doesn't...
  3. vvv

    Bind Socket to certain local addr and port

    i tried to bind inet socket to predefined address and port (it's server with multi ip's), but it succedeed only in binding to port what's wrong? i used sth like this $myport=20000; $myip="34.34.34.34"; $proto=getprotobyname('tcp'); socket(SOCK,PF_INET,SOCK_STREAM,$proto)...
  4. vvv

    does java allow work with pure http1.1 protocol?

    simple question does java allow work with http protocol i mean open socket, port, and so on write (socket,"GET ....."); sorry for syntax, i'm newbie
  5. vvv

    how to pass info from child process to parent

    The question is : how to pass info from child to parent not using files is it possible?
  6. vvv

    How extract href's from the table?

    Yes, you're right, I've got HTML document, which contains tables <table ..... <td <div <a href=&quot;....&quot;; TEXT DATA1 </a> <a href=&quot;....&quot;; TEXT DATA2 </a> <a href=&quot;....&quot;; TEXT DATA3 </a> and so on CPAN HTML:TableExtract allows easily extract only cell data TEXT...
  7. vvv

    How extract href's from the table?

    Can i extract href's from the table using modules TableExtract and LinkExtor? thanks.

Part and Inventory Search

Back
Top