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...
Show off your group to the world. Share a photo of your group with us.

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 1535 - 1564 of 2062   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1535
This is the optimal solution if all characters are codified using the &___; notation. If you notice, the colon (':') is not codified, which makes the process a...
El Rex
perl_jam03
Offline Send Email
Jun 1, 2004
3:34 pm
1536
Allo! ... Here is the solution: Use regexp replacement instead: $string =~ s/&\#(\d+);/chr($1)/ge; or even better, use a module: use HTML::Entities; $string =...
Gilles Beauregard
balour_2000
Offline Send Email
Jun 1, 2004
3:59 pm
1537
Wow. Great solution. This is the one. Nice going Gilles. Rex...
El Rex
perl_jam03
Offline Send Email
Jun 2, 2004
4:46 am
1538
I have 2 ways to do it. 1st is $string = "JAPH"; @ascii = unpack("C*", $string); print join(", ", @ascii); 2nd : chr(ord($string)); ...
maneesh agrawal
maneesh1978
Offline Send Email
Jun 2, 2004
9:12 am
1539
I am a perl newbie and need to do text substitution in a file. I want to do that without having to open two files-one for reading the contents and another for...
linuxtyro
Offline Send Email
Jun 7, 2004
5:04 am
1540
... Are you doing this on the commandline or on the web? AFAIK, Perl parses the file line-by-line by default. Anyway, what you probably want to do is to save...
eman
egcalso
Offline Send Email
Jun 7, 2004
3:38 pm
1541
If your substitution is not very complex (that is, it is just a single s///), then the command line might be your best option. Checkout 'perldoc perlrun' for...
El Rex
perl_jam03
Offline Send Email
Jun 7, 2004
7:59 pm
1542
Hi Group, I need help in modifying data files that are created on my PC by the data feed I get from my stock broker. These files are text files in csv format....
rakeshsahgal
Offline Send Email
Jun 8, 2004
6:55 pm
1543
... (Warning: Code not tested) Assuming that the filename is in $name, you can use if($name =~ /^(.+)(EQ|2ndCode|3rdCode)(\d+)$/) { # now $1 contains the...
fischron.external@...
dodekaedergu...
Offline Send Email
Jun 9, 2004
6:08 am
1544
Ronald, Thanks very much for taking the trouble. Now that I have the pointers I will get cracking on trying to work out the solution. Regards Rakesh...
rakeshsahgal
Offline Send Email
Jun 10, 2004
3:43 pm
1545
Greetings all! I am new to Perl as well as this group so pls. forgive me if I am asking old/stupid questions... Basically I want the perl script to track the...
annieluolu
Offline Send Email
Jun 13, 2004
3:33 am
1546
hi friends, can anyone help me do this program, i do ot know perl at all. i want to learn , please ,,, can anyne help me learn ,,, check out the link below ...
aarthisoft
Offline Send Email
Jun 13, 2004
7:49 am
1547
Hello, I'm relatively mewbie in Perl and I'm not very expert with it. Consequentely I have a big problem with my web form processing script. The problem is :...
kjhseka
Offline Send Email
Jun 14, 2004
3:53 am
1548
Do the following: 1) Start by reading a couple of books to get acquainted with the language syntax. I recommend "Learning Perl" by Randal Schwartz et al, aka...
El Rex
perl_jam03
Offline Send Email
Jun 14, 2004
8:09 am
1549
Someone has a line perl script how to connect a Sybase Database? My Operating System is Unix. Thanks in advanced. Dave....
david_iraheta
Offline Send Email
Jun 14, 2004
8:09 am
1550
There is no single command as such.. use need to to use sybase::DBlib module and then use the the funtions in the module (for example connect, execute,,...
Santhi Kumar
Santhi.Kumar@...
Send Email
Jun 14, 2004
8:32 am
1551
Thanks Santhi. This code help me how to connect to Sybase. Regards. Dave. Santhi Kumar <Santhi.Kumar@...> wrote: There is no single command as...
David Iraheta
david_iraheta
Offline Send Email
Jun 15, 2004
2:06 am
1552
Hi friends, can anyone help me do the following project, if anyone have already done , please do help me. Project 1 - Small Shell Create a simple restricted...
aarthisoft
Offline Send Email
Jun 16, 2004
1:31 am
1553
<g> - isn't this called "unix" ...? :=0...
Mike Southern
mikesouthern
Offline Send Email
Jun 16, 2004
2:25 am
1554
I have a perl script that is run in the cgi-bin directory. This script belongs to the group xxx.I want it to create a new directory in another location(not ...
linuxtyro
Offline Send Email
Jun 21, 2004
4:58 pm
1555
Can anyone help me with using the sort function in Perl? I am printing a list of data that I would like to have sorted by a numeric value. I can't seem to get...
beckywb
Offline Send Email
Jun 22, 2004
1:44 pm
1556
do you have permission to write in the directory in which you're making the directory?...
slackusr
Offline
Jun 22, 2004
9:35 pm
1557
I'm understanding that you have lines of text with fields delimited by |, so when you get the lines from the file, you want to sort the lines by the lexile...
slackusr
Offline
Jun 22, 2004
10:11 pm
1558
Do a 'ps aux' on the command line to find out who is runnign apache. Look for httpd or apache. A grep might be helpful: $ ps aux | grep httpd The user is...
El Rex
perl_jam03
Offline Send Email
Jun 22, 2004
11:26 pm
1559
... slackusr> @indata = sort {(split(/\|/, $a))[3] <=> (split(/\|/, $b))[3]} slackusr> @indata; slackusr> Would be a little nicer to load the items into a list...
merlyn@...
merlynstoneh...
Online Now Send Email
Jun 23, 2004
5:00 am
1560
... beckywb> require "cgi-lib.pl"; beckywb> $match="no"; beckywb> &ReadParse; No no no. Don't use this ancient unsupported library. use CGI.pm... it comes...
merlyn@...
merlynstoneh...
Online Now Send Email
Jun 23, 2004
3:25 pm
1561
I don't understand the reference to "look at Sort::Fields in the CPAN". What are you referring to? ... $b))[3]} ... lists ... Transform, ... 777 0095 ... Perl...
beckywb
Offline Send Email
Jun 24, 2004
8:52 pm
1562
Merlyn refers to the Perl on-line repository at cpan.org. You can also search at search.cpan.org. On Windows you can run 'ppm' from the command line and then...
Victor
perl_jam03
Offline Send Email
Jun 25, 2004
5:20 pm
1563
Hello, I am trying to write a script that can parse CDATA section of an xml document. The element where the CDATA section lives is called AttData and there...
aswolff1971
Offline
Jun 25, 2004
9:10 pm
1564
Hi Everyone, I hope someone can help. I am trying to extract all users from a .htpasswd file who is in an array and put them in a new file. Here is the code I...
Julie A. Bolduc
jpfuncrochet
Offline Send Email
Jun 27, 2004
4:55 am
Messages 1535 - 1564 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