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 to share photos of your group with the world? 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 21753 - 21782 of 26720   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
21753
Down posting ... [There is some trouble with the module install.] "Charles K. Clarkson" <cclarkson@...> wrote: ... In perl, characters are strings....
Sreeram B S
sreeramabsc
Offline Send Email
Sep 1, 2005
8:26 am
21754
... Sreeram> Down posting ... [There is some trouble with the module install.] TRIM it. TRIM it. -- Randal L. Schwartz - Stonehenge Consulting Services, Inc....
merlyn@...
merlynstoneh...
Offline Send Email
Sep 1, 2005
8:58 am
21755
... use warnings; ... if( $key eq "\b" ){ if( length( $word )){ print "\b \b"; $word = substr( $word, 0, -1 ); } }else{ ... } ... print "\n"; ... NOTES: "\b",...
Shawn Corey
shwncorey
Offline Send Email
Sep 1, 2005
12:58 pm
21756
... Use the split operator rather than substr. The resulting code will be faster and easier to read. my @chars = split //, $string; Then use $chars[$i] rather...
Shawn Corey
shwncorey
Offline Send Email
Sep 1, 2005
1:11 pm
21757
... Solaris doesn't come with a compiler installed. You can either buy Sun One Studio (expensive, not recommended) or grab gcc from sunfreeware.com. I'd go...
Grier Johnson
malcalypse_t...
Offline Send Email
Sep 1, 2005
2:59 pm
21758
... needs. ... Sun Studio 10 is available for free from http://www.opensolaris.org/os/community/tools/sun_studio_tools/ I suggesting going with Sun Studio 10...
Damien Carbery
daymobrew
Offline Send Email
Sep 1, 2005
3:38 pm
21759
... I stand corrected. If it's free, stick to the sun product. -- Grier...
Grier Johnson
malcalypse_t...
Offline Send Email
Sep 1, 2005
4:33 pm
21760
Hey everyone. I was wondering if there are any single functions that take a string and compare it against every string in an array to see if a match is found....
James Colannino
wizzleypete21
Offline Send Email
Sep 1, 2005
9:25 pm
21761
... Random lookups are better handled with hashes, not arrays. If you need to maintain order use an ordered hash. if ( $is_valid_color{ $string } ) { Or: if (...
Charles K. Clarkson
charlesclarkson
Offline Send Email
Sep 1, 2005
9:35 pm
21762
... James> Hey everyone. I was wondering if there are any single James> functions that take a string and compare it against every James> string in an array to...
merlyn@...
merlynstoneh...
Offline Send Email
Sep 1, 2005
10:28 pm
21763
... I should have. Honestly I had forgotten that there was a perl faq I could read. If it had occured to me I would have done so. I'll remember to read it...
James Colannino
wizzleypete21
Offline Send Email
Sep 1, 2005
10:54 pm
21764
... Thanks :) James...
James Colannino
wizzleypete21
Offline Send Email
Sep 1, 2005
10:54 pm
21765
... James> I should have. Honestly I had forgotten that there was a perl faq I James> could read. If it had occured to me I would have done so. I'll James>...
merlyn@...
merlynstoneh...
Offline Send Email
Sep 1, 2005
11:01 pm
21766
On 01 Sep 2005 16:00:58 -0700, merlyn@... ... Is there any chance you can be convinced to lay off the venom and just ignore people you don't think...
Grier Johnson
malcalypse_t...
Offline Send Email
Sep 2, 2005
3:36 am
21767
Grier Johnson <grierj@...> wrote: ... Solaris doesn't come with a compiler installed. You can either buy Sun One Studio (expensive, not recommended) or...
Sreeram B S
sreeramabsc
Offline Send Email
Sep 2, 2005
4:19 am
21768
Shawn Corey <shawn.corey@...> wrote: ... use warnings; ... if( $key eq "\b" ){ if( length( $word )){ print "\b \b"; $word = substr( $word, 0, -1 ); } ...
Sreeram B S
sreeramabsc
Offline Send Email
Sep 2, 2005
4:44 am
21769
... [ snip stuff about Solaris and if has compiler or not ] ... [ snip ] ... My Slackware 10.1 uses gcc. But cc also works (can use) due to a symlink pointing...
acummingsus
Offline Send Email
Sep 2, 2005
6:19 am
21770
The requirement is for CMM Level 5 organization in Bangalore Viewers Dev – Engineer / Lead / Manager 3-10 years experience, Strong in VC++, ATL, and COM with...
Arthi Focus India
arthi_focus
Offline Send Email
Sep 2, 2005
7:05 am
21771
... (in) an array ] FWIW, if anyone interested: http://perldoc.perl.org/search.html?q=element+in+list ...
acummingsus
Offline Send Email
Sep 2, 2005
7:08 am
21772
... [ snip ] ... last if $path_w_name =~ /\bq\b/; # better in case of q within string [ snip ] ... if ($path_w_name =~ /\bq\b/) { # better in case of q within...
acummingsus
Offline Send Email
Sep 2, 2005
7:33 am
21773
... Grier> Is there any chance you can be convinced to lay off the venom and just Grier> ignore people you don't think have done their due diligence? I've...
merlyn@...
merlynstoneh...
Offline Send Email
Sep 2, 2005
11:21 am
21774
Hello, I wanted to know how to catch this with a regular expression: i have a file like this ... VARIABLE STRING is a variable. NON_REG_MSG_RECUS is a...
portos_latinos
Offline Send Email
Sep 2, 2005
11:34 am
21775
... portos> i have a file like this portos> ---------------------------------------------------- portos> ----- NON_REG_MSG_RECUS ------- VARIABLE STRING------ ...
merlyn@...
merlynstoneh...
Offline Send Email
Sep 2, 2005
11:56 am
21776
There is a exemple of the lines : 09/02/05 08:18:14.363 1396 [4] ALRTC - Ecriture du nouveau document dans la BAL Militaire Locale [1689 ...
portos_latinos
Offline Send Email
Sep 2, 2005
12:05 pm
21777
... portos> 09/02/05 08:18:14.394 1396 [4] NON_REG_MSG_RECUS [Message reçu : "Fri portos> Sep 02 10:16:54 CEST 2005"] [3121 D:\ATELIER\CURRENT_release\SOURCE]...
merlyn@...
merlynstoneh...
Offline Send Email
Sep 2, 2005
12:26 pm
21778
... Please don't respond to the trolls, it only encourages them to post more of the same. I know it's difficult not to reply but they write these things just...
Shawn Corey
shwncorey
Offline Send Email
Sep 2, 2005
1:26 pm
21779
Hi friends, I have a query related to print. In the web, I came across a program which does some terminal related functionalities, like clearing the screen,...
Sreeram B S
sreeramabsc
Offline Send Email
Sep 2, 2005
1:26 pm
21780
... You are correct, the sequence "\x1B[2J" will clear the screen and then an "m" will appear in the upper-left corner. For a brief description of the ANSI...
Shawn Corey
shwncorey
Offline Send Email
Sep 2, 2005
2:05 pm
21781
... Shawn> Please don't respond to the trolls, it only encourages them to Shawn> post more of the same. I know it's difficult not to reply but Shawn> they...
merlyn@...
merlynstoneh...
Offline Send Email
Sep 2, 2005
2:41 pm
21782
... Hash: SHA512 Hello, Is it possible to create Remote Procedure Call in Perl? If yes, do you have some links about tutorials and sample codes. Thanks, ...
Michael Louie Loria
michaellouie...
Online Now Send Email
Sep 3, 2005
6:27 am
Messages 21753 - 21782 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