Re: Help required to extract multiple text fields from a text string

2012-05-26 Thread Adams Paul
Sent from my LG phone Jim Gibson jimsgib...@gmail.com wrote: On May 26, 2012, at 5:51 AM, pa...@fsmail.net wrote: split is slower than the correct regex matching. Did you know that split uses a regular expression to find the separators on which to split the string? So your claim is

Re: Introduction and Perl 5 References

2012-02-28 Thread Adams Paul
Sent from my LG phone Shawn H Corey shawnhco...@gmail.com wrote: On 12-02-27 08:02 PM, Mike wrote: I was curious if there were any other members in the 804 area? I'm looking to meet some other programmers in my area as I only know of one other. You should look for Perl Mongers in your area

Re: search and replace with an array

2012-02-21 Thread Adams Paul
Sent from my LG phone John W. Krahn jwkr...@shaw.ca wrote: Chris Stinemetz wrote: I am trying ot find a way to use an array as a reference to remove lines from a file. The array @keyFields has the elements rcsm and cdmno. My objective is to remove any line from the input that matches the

Re: segmentation fault

2011-12-24 Thread Adams Paul
Sent from my LG phone Motaz SAAD motaz.s...@gmail.com wrote: On Dec 21, 5:37 pm, shlo...@shlomifish.org (Shlomi Fish) wrote: On Wed, 21 Dec 2011 09:48:19 -0600 Robert Wohlfarth rbwohlfa...@gmail.com wrote: On Tue, Dec 20, 2011 at 11:25 AM, Motaz SAAD motaz.s...@gmail.com wrote:

Re: issue with perl map function

2011-12-03 Thread Adams Paul
Sent from my LG phone Paul Johnson p...@pjcj.net wrote: On Fri, Dec 02, 2011 at 04:39:20AM -0500, sunita.prad...@emc.com wrote: Hi All My array @sympd_list has following lines : /dev/sdd 0BE0 07F:0 08C:D0 Unprotected N/Grp'd RW

nested loop

2008-10-27 Thread Adams Paul
Hello everyone, I have a program which navigates to a page and then extracts the links and navigates to each of those links.It works fine for the first web page(the program navigates to the first page and then extracts the links and visits all the links).When I then try to get the program to

extract links from webpage

2008-10-05 Thread Adams Paul
Hello everyone, I am using Win32::IEAutomation and I am able to get the program to go to different web pages with the following and to go to a particular link within a webpage. use Win32::IEAutomation; my $ie =Win32::IEAutomation-new(visible=1,maximize=1);

web pages

2008-09-17 Thread Adams Paul
Hello everyone, I am still trying to change to different web pages in a browser.I have tried the following code: #!/usr/bin/perluse warnings;use strict;use LWP::Simple;system (start iexplore \my$url\);sub main (for my$URL

open program

2008-09-08 Thread Adams Paul
I am trying to open Internet explorer from within Perl.I have used the following code: #!/usr/bin/perl;open(MYFILE,C:\Program Files\Internet Explorer.exe); Any help would be appreciated. Paul

open program

2008-09-08 Thread Adams Paul
I am trying to open Internet explorer from within Perl.I have used the following code: #!/usr/bin/perl;open(MYFILE,C:\Program Files\Internet Explorer.exe); Any help would be appreciated. Paul