Search the web
Sign In
New User? Sign Up
Perl_Official · Perl . CGI . Shell script
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1753 - 1782 of 2062   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1753
I have a text file that I would like to display as a web page with some additional html functions. At each "System Configuration" statement I would like to...
bmvh01
Offline Send Email
May 5, 2005
5:43 am
1754
Dear Mike, This is very much possible. The code to achieve this should approximately look like this, this is just an impromptu created code, so please correct...
Paul Alapatt
paulalapatt
Offline Send Email
May 5, 2005
4:07 pm
1755
hi all I am very new to perl and i am learning thru manuals only so kindly help me to solve the following problem, and my job is related to document and text...
baski_28091979
Offline Send Email
May 5, 2005
4:08 pm
1756
I have something along the line of: # FILE1.pl require "FILE2.pl"; eval { &function(); }; print "$@" if $@; print "This never prints.\n" #FILE2.pl sub function...
the_land_baron
Offline Send Email
May 7, 2005
5:07 am
1757
You already asked this. Do we have to endure the pain again?...
Mike Southern
mikesouthern
Offline Send Email
May 7, 2005
10:34 am
1758
Hi You can try by removing the underscore before eval function i.e. eval { &function(); }; not _eval…. and i suppose you have any other coding other than...
Krishna R
krish_tamil
Offline Send Email
May 9, 2005
8:12 am
1759
Hello, while installing some package that has configure script we can pass the argument --PREFIX=/USR or --PREFIX=/USR/LOCAL etc. how do i pass such arguments...
com bio
combiofriends
Offline Send Email
May 10, 2005
5:14 pm
1760
Hi All, I recently installed Perl (Indigo Perl) to run under Windows XP/Apache, but cannot run anything. Can you provide me simple steps to do it? Thanks...
Carlos Ferrer
carlosjrferrer
Offline Send Email
May 11, 2005
9:26 pm
1761
Hi, I am trying to write a perl script that calls Oracle lsnrctl and resets the listener password. The problem is that once I am into lsnrctl and issue the...
johncos1068
Offline Send Email
May 13, 2005
7:17 am
1762
Hi: I'm making a daemon for linux, but this daemon stop if any error occurs. ¿How can I to do that this daemon do not stop never? Thanks and sorry for my bad...
antonioantonioantonio...
antonioanton...
Offline Send Email
May 19, 2005
11:39 pm
1763
... Hi Antonio, You can create a cron script which checks regular whether the script is died, if it has then restart it. Alternatively you can fork the process...
Paul Alapatt
paulalapatt
Offline Send Email
May 20, 2005
3:32 pm
1764
Wrap the part that errors with eval eval { open (FILE, "somefile.that.doesnot.exist"); close(FILE) }; ... From: perl_official@yahoogroups.com ...
Jason Minton
mintoje
Offline Send Email
May 20, 2005
3:33 pm
1765
is their a function or way to determine whether a field, or variable for that matter, is numeric, alpha or alphanumeric? thanks in advance...
junoon_hai_mujhe
junoon_hai_m...
Offline Send Email
May 22, 2005
1:04 am
1766
... Yes you can use regular expressions for that ... $ID = 2552399; if($ID =~ /[\d]+/) { print qq{This is a digit}; } ________________________________________ ...
Paul Alapatt
paulalapatt
Offline Send Email
May 22, 2005
4:16 pm
1767
Hi, You can explore the following idea: $x=11; $y="This a string"; print "$x is a number" if !($x & ~$y); print "$y is a string " if ($x & ~$y); Regards, ...
g.toullat@...
georges_toullat
Offline Send Email
May 23, 2005
10:06 am
1768
... perldoc -q "How do I determine whether a scalar is a number/whole/integer/float?"...
Dean Inada
whinnim
Offline Send Email
May 24, 2005
3:53 pm
1769
Quick Question. Lets say you have the following $string = "http://www.ford.com/index.cgi?item=1" I want to replace index.cgi?item=1 How do I do this. I can't...
Michael Muff
m2muff
Offline Send Email
Jun 3, 2005
6:16 am
1770
I'm having trouble. I read a file to an array. open (FILE, ......) @array=<FILE>; Now I want to replace multiple phrases(portions of a line) in the file with...
Michael Muff
m2muff
Offline Send Email
Jun 3, 2005
6:16 am
1771
... Well a couple of ways to do it: Rough unchecked code would go like this @blownup = split /\//, $string; $blownup[$#blownup] = "new value"; $string =...
Paul Alapatt
paulalapatt
Offline Send Email
Jun 3, 2005
5:16 pm
1772
... Michael> Quick Question. Michael> Lets say you have the following Michael> $string = "http://www.ford.com/index.cgi?item=1" Michael> I want to replace...
merlyn@...
merlynstoneh...
Online Now Send Email
Jun 3, 2005
5:16 pm
1773
... @array=split("?", $string); $first=$array[0]; $secon=$array[1]; $string_now=$first."*".$second; print $string_now; This code should output...
Ntina Triantafilidou
ntina23gr
Offline Send Email
Jun 3, 2005
5:17 pm
1774
... Sorry, but my english are not good enought to understand what u mean. Please tell me what you want to do and I will help you if I can. I hope that ...
Ntina Triantafilidou
ntina23gr
Offline Send Email
Jun 3, 2005
5:17 pm
1775
... If you need to replace "mechanical robots" with "human androids" then: @array =~ s/mechanical robots/human androids/ig; Take care, Paul Alapatt ...
Paul Alapatt
paulalapatt
Offline Send Email
Jun 3, 2005
5:18 pm
1776
... Ntina> @array=split("?", $string); I doubt that you tried that. Because "split" will treat the first parameter as a regex. Note for you in the future....
merlyn@...
merlynstoneh...
Online Now Send Email
Jun 3, 2005
11:29 pm
1777
The question mark is a special character, so you need to escape it with \ $string = "http://www.ford.com/index.cgi?item=1"; print "$string\n"; $string...
Mike Southern
mikesouthern
Offline Send Email
Jun 4, 2005
12:19 am
1778
Hi All I am new to Perl and I am into Testing ,I want to Get into Perl Automation Testing.So please Can any one Help me I want to Know How do u use perl in...
srinivas joshi
srinivasjoshi34
Offline Send Email
Jun 6, 2005
9:57 am
1779
... Dear Srinivas, Welcome to PERL. :) It would not be possible to write snippets on PERL Testing code, because it would depend on what is the 2nd app you wish...
Paul Alapatt
paulalapatt
Offline Send Email
Jun 6, 2005
5:04 pm
1780
Hi Paul Pattern match will not work in Array; i feel that the following code works fine print @array; foreach(@array) { $_ =~ s/mechanical robots/human...
Krishna R
krish_tamil
Offline Send Email
Jun 7, 2005
6:21 am
1781
Hi all, sorry for posting offtopic message... In smtp.. after establishing telnet connection with mail exchange server.. and after giving series of commands...
Kishore Balla
kishoreballa
Offline Send Email
Jun 9, 2005
1:48 pm
1782
Dear All, Right now I am in deep trouble to find a suitable solution to the following problem. I am truly in dire need of you help. I beg for your help. Please...
arinmuk
Offline Send Email
Jun 9, 2005
1:49 pm
Messages 1753 - 1782 of 2062   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help