Search the web
Sign In
New User? Sign Up
perl-beginner · Perl Beginners Mailing List
? 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 24680 - 24711 of 26720   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
24680
Hi Friends, Just to Share i Found Best of the Stocks info, (ALSO GOOD FOR BEGINNER) at Below site. It list Lots of Sites Best Known For Stocks.. -:- BEST OF...
Fundoo_Sites _Info
fundoosites_...
Offline Send Email
Dec 1, 2006
11:17 am
24681
Hi, We are having Hot Job Opening in Chennai for PERL The candidates must have 3 years Exp in PERL Work Location: Chennai, T Nagar. Exp: 3+Y to 9+Y ( We have...
IT Jobs
itnonit
Offline Send Email
Dec 1, 2006
3:21 pm
24683
Let's say I have an array (named @TONE_ROW) with twelve elements in it. Now how would I do the following things to it? Reverse the order of the elements...
lord_vodka_ccccccxxxx...
lord_vodka_c...
Offline Send Email
Dec 5, 2006
12:26 am
24684
... lord> Let's say I have an array (named @TONE_ROW) with twelve elements in it. Let's say you have a homework assignment, and you wanted to cheat on it. ...
merlyn@...
merlynstoneh...
Offline Send Email
Dec 5, 2006
2:21 am
24685
Hi all let assume a hash of array like my %HoA = ( col_A => [ 3, 5, 7 ], col_B => [ 23.56, 25.75, 29.10 ], col_C => [ 'A', 'B', 'C' ], ); Is there a way to...
bike2ride
gl_bike2ride
Offline Send Email
Dec 5, 2006
8:48 am
24686
Hi you can simply write a logic as per any traditional language. for i =0 to lenght of the array temp = array(i) array (i) = array(i+1) array (i+1) = temp ...
Nawab Shaikh
nawab_mono
Offline Send Email
Dec 5, 2006
9:17 am
24687
From: "lord_vodka_ccccccxxxxxxvi" <lord_vodka_ccccccxxxxxxvi@...> ... You want to review the docs for sort() and rand(). To swap two elements of an array...
Jenda Krynicky
jendaperl
Offline Send Email
Dec 5, 2006
2:49 pm
24688
This is really free I will never ask you to buy any thing but if you do I will really appreciate it. For details click on the link ...
chuck_jcs
Offline Send Email
Dec 6, 2006
12:41 am
24689
Hi, I am interested for on site opprtunities. Thnx. Regards, Prasanna IT Jobs <itnonit@...> wrote: Hi, We are having Hot Job Opening in Chennai for...
Prasanna Goupal
perl_developer
Offline Send Email
Dec 6, 2006
2:50 pm
24690
Dear All, By mistake, i had send this mail to you all. Sorry for that. Prasanna Prasanna Goupal <perl_developer@...> wrote: Hi, I am interested for on...
Prasanna Goupal
perl_developer
Offline Send Email
Dec 6, 2006
3:07 pm
24691
Thanks everyone. I shall give all these a try and save my best one :) Thanks again....
Santosh Sugur
santosh_sugur
Offline Send Email
Dec 8, 2006
6:35 am
24692
Hi Everyone, I want to extract keywords from any web site. I wrote some codes bu it doesn`t work... Do you have any idea about this part ? My code: ...
Adem Erisek
ademerisek
Offline Send Email
Dec 10, 2006
9:21 pm
24694
http://free.james-and-elena-inc.com/...
chuck_jcs
Offline Send Email
Dec 10, 2006
9:52 pm
24695
Keywords? What exactly are you looking for? ... [Non-text portions of this message have been removed]...
Hans Witschi
hwitche
Offline Send Email
Dec 11, 2006
4:59 am
24696
Hello All, I have one string that follow below. How can i take the 8% or exactly 5 column? /dev/dsk/c0t0d0s6 1370511 96072 1219619 8% /export/home ...
Marcos Onisto
mlonisto
Offline Send Email
Dec 11, 2006
6:33 pm
24697
Sorry - I meant to enclose $strg in single quotes - not double quotes as % would be interpreted as a hash. ... From: Robert Brown <rdabman4@...> To:...
Robert Brown
rdabman4
Offline Send Email
Dec 11, 2006
6:53 pm
24698
One possible answer my ($strg,$pct)=""; my @flds=(); $strg="/dev/dsk/cotodos6 1370511 96072 1219619 8% /export/home"; @flds=split(" ",$strg); $pct=$flds[4];...
Robert Brown
rdabman4
Offline Send Email
Dec 11, 2006
6:53 pm
24699
Hello, That's it! It's work but I'm trying to understand how It act. Thanks a lot, Marcos Robert Brown <rdabman4@...> wrote:...
Marcos Onisto
mlonisto
Offline Send Email
Dec 11, 2006
7:11 pm
24700
Marcos, Are you familiar with perldoc? Have you tried looking up the split() function there? RobR...
Rob Richardson
interrobang
Offline Send Email
Dec 11, 2006
7:48 pm
24701
Hi! All I am facing one problem, could you please help? Using perl, I am parsing one XML file and trying to generate one text file. At the end of the each...
manoj mitra
manoj_mitra2001
Offline Send Email
Dec 12, 2006
2:24 pm
24702
... text file. At the end of the each line, I am getting following symbol - ... Please post your code and the XML file data....
Damien Carbery
daymobrew
Offline Send Email
Dec 12, 2006
2:59 pm
24703
Hi All, Anyone used backticks in Perl? Here is what I am trying to do $x = `mkdir /mnt`; print "$x"; Is there anyway to catch the output? Or does backticks...
Raja Rajasekaram
fastaero95
Offline Send Email
Dec 12, 2006
4:26 pm
24704
... Raja> Hi All, Raja> Anyone used backticks in Perl? Here is what I am trying to do Raja> $x = `mkdir /mnt`; Why are you using external mkdir when Perl has a...
merlyn@...
merlynstoneh...
Offline Send Email
Dec 12, 2006
4:47 pm
24705
... What else have you tried? What does this give you: $x = `pwd`; print $x; What did you expect to find in $x after $x=`mkdir /mnt`; ? -Rob Rob Biedenharn...
Rob Biedenharn
rab6687
Offline Send Email
Dec 12, 2006
4:53 pm
24706
HI all , I’ve gotten into CVS recently and have created a Group on Google Email at HYPERLINK ...
Brian E Boothe
codemage67
Offline Send Email
Dec 13, 2006
8:25 pm
24707
Hello, One more question. I have the output below, I'm taking the five field that is ..%, but I'd to take the only value without the % character. ...
Marcos Onisto
mlonisto
Offline Send Email
Dec 14, 2006
12:26 pm
24708
... field that is ..%, but I'd to take the only value without the % character. ... I know of two ways. 1) Use substitution to remove non-numeric chars. my...
Damien Carbery
daymobrew
Offline Send Email
Dec 14, 2006
12:57 pm
24709
Hello All, How can I count the elements of one array? I'm using the push function, but this is return message like below. -bash-3.00$ ./checksrvs.pl Useless...
Marcos Onisto
mlonisto
Offline Send Email
Dec 14, 2006
5:12 pm
24710
Hello, I'll try it! Thanks a lot, Marcos ... field that is ..%, but I'd to take the only value without the % character. ... I know of two ways. 1) Use...
Marcos Onisto
mlonisto
Offline Send Email
Dec 14, 2006
5:20 pm
24711
... We'd appreciate some code. Show us relevant lines of your code. HTH, Charles K. Clarkson -- Mobile Homes Specialist Free Market Advocate Web Programmer 254...
Charles K. Clarkson
charlesclarkson
Offline Send Email
Dec 14, 2006
6:13 pm
Messages 24680 - 24711 of 26720   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