|
First
|
Prev |
Next
|
Last
Pages: 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
Can I use a look-ahead and a look-behind at the same time? How would I match the text that's after "#ab cd ef#" and before "#qr st uv#" in the following string? I want to use a regular expression that has both a look-behind and a look-ahead together. Is this possible? #ab cd ef#gh ij kl#qr st uv# ... 9 Apr 2008 19:35
FAQ 8.50 What is socket.ph and where do I get it? This is an excerpt from the latest version perlfaq8.pod, which comes with the standard Perl distribution. These postings aim to reduce the number of repeated questions as well as allow the community to review and update the answers. The latest version of the complete perlfaq is at http://faq.perl.org . --------... 9 Apr 2008 15:28
? about using multi-level menu system using dispatch method It's a general question on how do I make sure that I'm not eating up memory unnecessarily. I have a script that is used as a user interface to: monitoring the status of application's several scripts, stopping, starting, and creating projects within the application A project is defined as the set of actions req... 9 Apr 2008 16:17
SOAP Hi I "inherited" a program which contains this line: $a = $soap->call( $retrieveXmlList => @params )->result ; I added: print "$a\n" ; Which produced: HASH(0x50c5d4) How do I proceed from here to see and parse the XML tree/data? Thanks KO ... 9 Apr 2008 12:59
FAQ 9.4 How do I remove HTML from a string? This is an excerpt from the latest version perlfaq9.pod, which comes with the standard Perl distribution. These postings aim to reduce the number of repeated questions as well as allow the community to review and update the answers. The latest version of the complete perlfaq is at http://faq.perl.org . --------... 9 Apr 2008 08:54
problem using system() Hi, I have the following string: my $command = "$User_Preferences{"asadminexecutable"} deploy --user= $User_Preferences{"user"} --passwordfile= $User_Preferences{"passwordfile"} --host=$User_Preferences{"host"} -- port=$User_Preferences{"port"} $User_Preferences{"pathdeployunit"}"; system($command); Globa... 9 Apr 2008 18:45
Trouble with @ARGV Hi, I'm in trouble and doubt (is it a Perl or shell (Bash) fault? :-) while understanding the @ARGV behaviour... Here's a simple (newbie) script: -- #!/usr/bin/perl print "ARGV: `" . "@ARGV" . "`\n"; for my $i (0..$#ARGV) { print "Argument[${i}]: `" . $ARGV[$i] . "`\n"; } 1; -- First c... 10 Apr 2008 02:54
FAQ 8.37 How do I find out if I'm running interactively or not? This is an excerpt from the latest version perlfaq8.pod, which comes with the standard Perl distribution. These postings aim to reduce the number of repeated questions as well as allow the community to review and update the answers. The latest version of the complete perlfaq is at http://faq.perl.org . --------... 9 Apr 2008 02:56
Perl Regex substitution: replace nth occurrance Hi Guys, I have a variable say: $x = "this is test program with test inputs"; My requirement is to replace nth occurrance of "test" with something else. how to achieve the same using perl regex. if i do something like: $x =~ s/test/java/g; This is going to replace all occurrance of test with "java" but my ... 9 Apr 2008 14:39
GET PAID MILLIONS OF DOLLARS FROM GOOGLE PROJECT NETWORK.IT ISA FREE PROGRAMME .THE LINK IS BELOW vicky wrote: GET PAID MILLIONS OF DOLLARS FROM GOOGLE PROJECT NETWORK.IT IS A FREE PROGRAMME .THE LINK IS BELOW www.jeeva235.blogspot.com WONDERFUL OPPORTUNITY IS HERE I heard you can make money posting here... ;-) -- Andrew DeFaria <http://defaria.com> All computers wait at the same speed. ... 8 Apr 2008 23:42 |