Skip to search.
perl-beginner · Perl Beginners Mailing List

Group Information

  • Members: 2100
  • 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

  Messages Help
Advanced
Messages 1161 - 1190 of 27344   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1161 webmaster@... Send Email Dec 1, 2000
9:56 am
Some of us are good enough to respond to requests for help, and it would be nice if those who asked for the help would respond by saying whether or not the...
1162 L.Hagen@... Send Email Dec 1, 2000
12:53 pm
Hi, Is there a way to redirect output (into a text-file) that is produced while running a perlprogram on the interpreter? Thanks, Lex...
1163 Tom Barron
tbarron@... Send Email
Dec 1, 2000
1:04 pm
... myprogram.pl > mytextfile Is this what you mean, or are you asking about something else? I have a request. A number of us are subscribed to both...
1164 Steve Milo
slavik944@... Send Email
Dec 1, 2000
2:37 pm
I hope if I wasnt clear enough that I am grateful for the help given. It has given me an insight into otherthigs but hasnt given me the ability to solve the...
1165 Andrew Johnson
andrew-johnson@... Send Email
Dec 1, 2000
8:04 pm
! The dynamic elements are in junk or rather a reference of junk, they ! provide a 'tag' for which file I will be accessing, this *will* ! change in a shorter...
1166 Steve Milo
slavik944@... Send Email
Dec 1, 2000
9:37 pm
... andrew-johnson@h...> ... they ... own ... to ... make ... what ... What have to show the user in the menu are those letters in that specific sequence in...
1167 Andrew Johnson
andrew-johnson@... Send Email
Dec 1, 2000
11:22 pm
[snipped basic specification] Ok, here is a template working from your spec and making up some stuff as I went along -- you'll obviously have to modify it to...
1168 Steve Milo
slavik944@... Send Email
Dec 2, 2000
1:10 am
This is alot of help Andrew, now I cant wait to get to work on monday and try it out. Some questions though. ... What does push do? ... How does this work? ...
1169 Andrew Johnson
andrew-johnson@... Send Email
Dec 2, 2000
2:17 am
Steve wrote: [snip] ! > push @menu, @junk; ! ! What does push do? push is a built-in Perl function that, well, pushes things onto the end of an array --...
1170 L.Hagen@... Send Email Dec 4, 2000
9:13 am
... produced ... This won't work for me, because i'm running the perl interpreter from a Visual Basic program (with the Shell command). Your suggestion only ...
1171 Daniel Jones
ddjones@... Send Email
Dec 4, 2000
10:27 am
On Mon, 04 Dec 2000 09:13:22 -0000, ... There still shouldn't be any reason you can't pass the redirection to the shell command. Simply add the "> mytextfile"...
1172 Tom Barron
tbarron@... Send Email
Dec 4, 2000
11:48 am
... Aha. That sounds like you might want to explicitly open the file inside the perl script, as several other posters have suggested. ... That's a fair...
1173 L.Hagen@... Send Email Dec 4, 2000
1:01 pm
Hi Tom, ... into ... be ... beginner ... question and ... those ... Or, if ... days, ... Since I work with Perl only since a few weeks (on and off), I ...
1174 L.Hagen@... Send Email Dec 4, 2000
1:06 pm
... from ... only ... the ... No, it doesn't work... ... Actually it's both. I'm getting strings back from functions and print them. But Perl also...
1175 webmaster@... Send Email Dec 4, 2000
2:05 pm
This is a perl/cgi/html question. I want to be able to open a new window in a browser, display a picture in it, and size the new window according to the size...
1176 Greg Webster
greg@... Send Email
Dec 4, 2000
3:45 pm
... 'target="_blank"' is more correct, and will always work, where 'new' will just replace any other webpage which someone named 'new'. ... Don't think you...
1177 Rodrigo Octávio de...
digomello@... Send Email
Dec 4, 2000
5:47 pm
How can I get the weekday passing the month day and the month ? - Como eu pego um dia da semana passando o mês e o dia do mês ? - TNKZ all ! - Valeu !! - ...
1178 RTCamm@... Send Email Dec 4, 2000
5:57 pm
Hello, all. Just beginning to learn perl, and just joined your group hoping it may be of benefit. I have a slide show perl script (very sophisticated one at...
1179 Steve Milo
slavik944@... Send Email
Dec 4, 2000
6:08 pm
Ok, I'm having some problems, I've commented in the areas below that pertain to them. ... My input file and output file look more like this: $infile =...
1180 Tom Barron
tbarron@... Send Email
Dec 4, 2000
6:08 pm
... Actually, you also need the year, but TMTOWTDI (There's More Than One Way To Do It)... Here's one: use POSIX; my ($mday, $mon, $year) = @ARGV; $mon--; ...
1181 Adrian Fischer
adrian@... Send Email
Dec 4, 2000
10:13 pm
But what does it do???? ... Adrian...
1182 adrian@... Send Email Dec 5, 2000
6:26 am
Hi Gang, I have a file that is called from a db that has <br> tags in it. Getting it from the db is no big deal but I need to be able to break it up on each...
1183 Randall Hobbs
Mandrake981@... Send Email
Dec 5, 2000
6:32 am
Hello there.. Just simply split up your data like so: @Data = split ("<br>", $desc1); Then use a foreach to run through the array @Data: foreach $Line (@Data)...
1184 Guillermo Pereyra Irujo
gpirujo@... Send Email
Dec 5, 2000
1:47 pm
... I think you cannot. Anyway, it's as easy as this with javascript: print <<end; <script language=javascript><-- ...
1185 Steve Milo
slavik944@... Send Email
Dec 5, 2000
4:39 pm
Nevermind, I think I've got most of this figured out. Steve M ... that...
1186 Daniel Jones
ddjones@... Send Email
Dec 6, 2000
1:01 am
On Mon, 04 Dec 2000 13:06:43 -0000, ... You might want to post the line you're using to spawn the shell. You may having something wrong with your specific ...
1187 Daniel Jones
ddjones@... Send Email
Dec 6, 2000
10:13 am
On Mon, 04 Dec 2000 13:06:43 -0000, ... You might want to post the line you're using to spawn the shell. You may having something wrong with your specific ...
1188 Steve Milo
slavik944@... Send Email
Dec 6, 2000
3:20 pm
Any help appreciated, Steve M...
1189 Maisha Walker
maisha@... Send Email
Dec 6, 2000
4:25 pm
Hi Steve, It means that you have a hash called subs, and in that hash, one of the values is a reference to an array. And you are calling one of the elements ...
1190 Steve Milo
slavik944@... Send Email
Dec 6, 2000
5:36 pm
... Yes, excellent, thanks, Steve M...
Messages 1161 - 1190 of 27344   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