Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

perl-beginner · Perl Beginners Mailing List

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 3765
  • Category: Perl
  • Founded: Aug 2, 1998
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 22567 - 22600 of 27459   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
22567 julian thomas p
julianthomasp Send Email
Jan 12, 2006
1:13 am
hello firends, iam new to this group.i need a help.how can we convert a normal text document into a xml file.for example if my document contains 1 heading 3 ...
22568 Piyush Swami
piyush@... Send Email
Jan 12, 2006
9:19 am
Hi, Is there any perl function in to concatenate a list of files. @list ("List of paths"); I want to make a single file in which contents of all the files are...
22569 balan.ranganathan@...
urs_dhandu Send Email
Jan 12, 2006
10:12 am
Hi Piyush I think @list = `find <directory>` will store the entire list of file names in that particular directory recursively with '\n&#39; appended in the end to...
22571 merlyn@...
merlynstoneh... Send Email
Jan 12, 2006
1:56 pm
... Piyush> Hi, Piyush> Is there any perl function in to concatenate a list of files. Piyush> @list ("List of paths"); @ARGV = @list; open STDOUT,...
22572 perl_1978 Send Email Jan 12, 2006
3:38 pm
The following script is giving this error "Undefined subroutine &main::newhash called at script.pl line 15." which I understand the subroutine is not defined....
22573 Madani, Srikanth, VF-DE
ihaveitinme Send Email
Jan 12, 2006
4:02 pm
... In the case that the subroutine was defined within the source file, and no longer is available: perhaps you have backups, or older revisions of your file...
22574 kalyanraj
kalyanrajs@... Send Email
Jan 12, 2006
4:36 pm
hi, The error is because you need to define the subroutine "newhash" inside your program. ie., in this case script.pl. As you said, that you forgot the syntax...
22575 ravi sankar
ravisankar2010 Send Email
Jan 12, 2006
6:25 pm
Hi, I am new to Perl.I am facing Problem While connecting to the DataDase. I write code like this..... use DBI; my...
22576 Kadir
kozmen Send Email
Jan 12, 2006
7:30 pm
Hello , Here is the my comment: #1..5 is array,@, is not variable like $v. I think comparing array #and variable # gives us the error wrong result unless $v...
22577 RAJESH PETHE
rpethe@... Send Email
Jan 13, 2006
12:19 pm
Hi, Connect like this -- use DBI; my $dbh=DBI->connect(&#39;DBI:oracle:DBNAME','scott&#39;,'tiger'); $dbh->do("create table names (a number(20)");...
22578 mirza2288 Send Email Jan 14, 2006
11:41 am
Hi friends, im a very new in pearl, i wants some help from great programmers hereon. please tell me about some free good e-books for learning & mastering perl...
22579 alex litvak
alex123x@... Send Email
Jan 14, 2006
12:05 pm
Here you go http://books.perl.org/onlinebooks...
22581 pearl16v Send Email Jan 14, 2006
11:58 pm
Does anyone know of a module that can parse the XML "iTunes Music Library.xml" file? I'm currently using XML::Simple but it does not parse the file the way I...
22583 YogS
yogi_raj_143 Send Email
Jan 15, 2006
2:16 pm
Hello All, The question is realted to unix & might be off-topic, But I hope you all (most of you) work with unix I have seen some executibles for Unix which...
22584 Shawn Corey
shwncorey Send Email
Jan 15, 2006
3:34 pm
... By DISPLAY, I assume you mean a terminal emulator, like xterm, emulating an ANSI terminal, like vt100. The easiest way to do this is to record the length...
22585 YogS
yogi_raj_143 Send Email
Jan 16, 2006
4:07 am
ThanX Shawn, That worked... & now I can use the example in my scripts Regards YogS ... [Non-text portions of this message have been removed]...
22586 umarani manuguri
umanuguri778 Send Email
Jan 16, 2006
11:01 am
Hi all, If any body give me the code of the following picture i am sending . Its very urgent please send me its in perl scripting using ms-sql database and can...
22588 larsbirgeringe Send Email Jan 17, 2006
3:12 pm
Hi, has anyone knowledge of ways of exchanging decimal period with decimal comma (as is the praxis in Sweden), in the output of numbers to the web browser? ...
22589 balan.ranganathan@...
urs_dhandu Send Email
Jan 17, 2006
5:26 pm
Hi All What is internal operation performed in the following statement? $decimal = 65+'a'; If I print the value of $decimal I get it as '65'. I thought there...
22590 Shawn Corey
shwncorey Send Email
Jan 17, 2006
5:46 pm
... You are trying to add a string to a number. Perl first converts the string to an number then adds it. The string 'a' is not a number, so Perl assigns it...
22591 Shawn Corey
shwncorey Send Email
Jan 17, 2006
5:51 pm
... See `perldoc perllocale`. -- Just my 0.00000002 million dollars worth, ... "Probability is now one. Any problems that are left are your own." SS Heart of...
22592 istebbins Send Email Jan 17, 2006
6:27 pm
OK, I think this is probably an easy question to answer. I have a perl program and I want it to call a tcl script with a couple arguments myprog.tcl arg1 arg2 ...
22593 Sreeram B S
sreeramabsc Send Email
Jan 18, 2006
4:00 am
Hi friends, I have 2 basic questions. (1) If I have 'use strict' in my perl file, cant I have the variables declared as 'local&#39; ? I am a bit confused here. If...
22594 larsbirgeringe Send Email Jan 18, 2006
8:47 am
Thanks for the hint. Lasse...
22595 joshypy Send Email Jan 18, 2006
10:31 am
Hello Friends, Please help me to know, After writing a perl program. How to make a execution file in Active perl 5.8.4. Please give me a step by step...
22596 KalyanRaj
kalyanrajs@... Send Email
Jan 18, 2006
10:40 am
Hi Joshy, After writing a perl program, you can execute the file from the respective directory from command prompt as following perl yourscriptname.pl You can...
22597 merlyn@...
merlynstoneh... Send Email
Jan 18, 2006
1:31 pm
... Sreeram> Hi friends, Sreeram> I have 2 basic questions. Sreeram> (1) If I have 'use strict' in my perl file, cant I have the variables declared as...
22598 Ken Shail
kenshail2003 Send Email
Jan 18, 2006
1:37 pm
http://www.indigostar.com/perl2exe.htm ... From: joshypy ; joshypy To: perl-beginner@yahoogroups.com Sent: Wednesday, January 18, 2006 10:29 AM Subject: [PBML]...
22599 Bill Walton
bill_walton7... Send Email
Jan 18, 2006
2:41 pm
Hi Shawn, I'm a newbie trying to develop a better understanding of Perl's presumptions re: context. Would the result be the same if the OP used double quotes...
22600 merlyn@...
merlynstoneh... Send Email
Jan 18, 2006
3:49 pm
... Bill> Would the result be the same if the OP used double quotes rather than Bill> single quotes? How would Perl treat: Bill> $decimal = 65 + "a" ? Bill>...
Messages 22567 - 22600 of 27459   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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