473,538 Members | 10,474 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Perl Forum

Perl programming language - ask questions about perl programming, syntax, variables, scoping, constructs, operators and functions, files, I/O, regular expressions, regex, subroutines, OO (object oriented), perl modules, CGI and more.
4
19,672
thread by: jram01 | last post Nov 25 '08 by: FiremanJoe
Hi Folks, I am facing problem to to execute .sql command in sql prompt using perl script. I am able to connect sql promt using " my $odbcinput = "odbcinput.txt"; my $odbcoutput = "odbcoutput.txt"; open (ODBCSQLFH, ">$odbcinput") || die "Unable to create input file ($odbcinput) for odbcsql\n";
5
19,208
thread by: joemono | last post Jul 19 '05 by: Roy Johnson
Hello everyone! First, I appologize if this posting isn't proper "netiquette" for this group. I've been working with perl for almost 2 years now. However, my regular expression knowledge is pretty limited. I wrote the following expression to take (hopefully) any _reasonable_ phone number input, and format it as (999) 999-9999 x 9999.
4
19,122
thread by: Wiinie | last post Feb 25 '11 by: Wiinie
How can I fix the error "Can't call method "id" on unblessed reference" for the following code? sub language{ my $self = shift; if (!$self->{LANGUAGE}) { my @language = (); my $statement = $db->prepare("select languageId, languageName from language"); $statement->execute();
2
19,009
thread by: Rich Pasco | last post Jul 19 '05 by: Rich Pasco
The PERL statement I use to open a text file looks like this: open(HANDLE, $filename); Now how can I get the "last modified" date of that file? I need a solution that works the same under Windows or Unix. - Rich
4
18,579
thread by: Michael Vilain | last post Jul 19 '05 by: Anno Siegel
Originally, I was using $value =~ s/<.*>//g; to strip HTML tags from a variable. It actually stripped everything from the first "<" to the last ">" after the ending tag. I found this regex in this group: $value =~ s/\<+\>//g;
2
18,551
thread by: john brown | last post Jul 19 '05 by: Christopher Shatto
There is a web page that I access frequently and would like to automate the authentication of the username and password. I would like to user a perl script but I'm not really sure about the steps. If someone could point me in the right direction. I don't know if it's this simple but wouldn't it just be a matter of using the LWP module. ...
2
18,536
thread by: mojju | last post Nov 19 '05 by: mojju
Perl Experts: open(INFILE, $filename) or die("Cannot read input file: $!"); #How can I use this while loop to scan/read numbers from three lines and #find the smallest number ? while ( <INFILE> ) { @words = split(); last;
4
18,520
thread by: slawson7 | last post Nov 16 '06 by: nmadpl
Easy one for all you Perl gurus out there. I'm opening a text file, reading the contents into an array, doing some processing and spitting out the results to another file. Although I've got this working fine, I had to employ a workaround when opening the file originally. I wanted to put: open(INPUT, "d:\pscripts\input.txt") or die "Could...
2
18,359
thread by: Hugh Lutley | last post Jul 19 '05 by: Roel van der Steen
I'm having some problems with installing modules with the MCPAN shell. When I first ran it I let it auto configure and now I cannot install anything. Is there a way I can force it to run the configure script again?? Thankx...
6
18,313
thread by: Spamtrap | last post Jul 19 '05 by: Joe Smith
I only work in Perl occasionaly, and have been searching for a solution for a conversion, and everything I found seems much too complex. All I need to do is take a simple text file and copy it, however some specific lines are in fact in UTF8 as printed garbagy characters and they need to be converted to Unicode, so that the new text file...
1
18,262
thread by: abdulhameed | last post Mar 15 '07 by: KevinADC
i want to count the no of variables that are same in an array please help me out
4
18,260
thread by: rahatekarabhijeet | last post Oct 5 '07 by: rahatekarabhijeet
Hi, I have seen that some modules which are available on CPAN are not listed in ActiveState repository. So those are not available to install by using ppm. I find out the way of adding adding repository in ppm given below, Way to add repository: To use these package repositories you start PPM and at the prompt type set repository NAME...
4
18,247
thread by: bluebillow | last post May 25 '07 by: miller
I am a new perl programer and I meet a question. I have a perl file test_1.pl like: #!/usr/bin/perl sub Test; sub Test { printf "==========================Hello, perl.\n"; return 0;
12
18,224
thread by: Jordi | last post Jul 29 '08 by: Jordi
I'm getting the following error: Software error: Can't locate object method "new" via package "A::B" at /path/file.cgi line 5. My code is basically this: #!/usr/bin/perl -w use strict; use warnings; use A::B; my $test = new A::B;
5
18,215
thread by: bhavanirayala | last post Aug 28 '07 by: numberwhun
Hello All, I am very new to perl.I am a java person. I have to read xml file in perl script and use those values in that file. So can anybody please help me to solve this xml parsing in perl file. Thankyou in advance.
3
18,185
thread by: skyy | last post Jun 15 '07 by: KevinADC
Hi.. what is the maximum size of an array and variable? With the following declaration: my $size; my @rx_array; what is the maximum number that $size can hold? what is the maximum number of elements @rx_array can hold?
3
18,171
thread by: kavithapotnuru | last post Aug 11 '07 by: miller
Hi All, Can anyone help me how to give multiple conditions in a while loop in perl. For example i have a while loop for which the value of a variable is A or B it should not enter in to the while loop. Basically i need the condition in the while loop should contains "||". Is it possible? If not can anyone suggest me an alternative
3
18,107
thread by: Bsr | last post Jul 3 '15 by: idreesnuman
What is the difference between for the following methods. "GET", "HEAD", "PUT" or "POST". Ex:my $req =HTTP::Request->new(GET =>$url1); Bhuvan.
1
18,056
thread by: Thieum22 | last post Jul 19 '05 by: Joe Smith
Hi, I try to go through a directory and it's subdirectories to reah the properties of each files. But I have a problem to set active the directory where the files are, in order to display their properties. If anyone know how to improve my method, or know a better one, he's welcome :-) Thanks,
1
17,995
thread by: J-miami | last post Jul 19 '05 by: J-miami
I am just starting to learn Perl. I had an idea that there should be free open-source Internet Cafe management software for Linux. I searched around online but couldn't find anything. The program would be appealing to anyone wanting to offer Internet access to their customers, from Internet Cafes to hotels. Who wants to pay hundreds or...
2
17,931
thread by: GIMME | last post Jul 19 '05 by: GIMME
I can't figure an expression needed to parse a string. This problem arrises from parsing Excel csv files ... The expression must parse a string based upon comma delimiters, but if a comma appears in double quotes it should not be used for parsing. For example in the simple case we'd have : $a='hello,brave,world';
1
17,707
thread by: Al Belden | last post Jul 19 '05 by: Giridhar Nandigam
Hi all, I've been working on a problem that I thought might be of interest: I'm trying to replace some korn shell scripts that search source code files with perl scripts to gain certain features such as: More powerful regular expressions available in perl Ability to print out lines before and after matches (gnu grep supports this but is...
10
17,672
thread by: lalnamar | last post Nov 2 '10 by: Andrew C
I want to execute a unix time command using perl, and capture the output (specifically, the time it takes the command to execute). i tried using the system command: system("time command "); however, when i try to capture the output, the capture output does not contain the amount of time it took to execute when i try to do: $var = `time...
8
17,551
thread by: patelxxx | last post May 21 '16 by: abu mubeen
Can someone guide me how to write a code to open a 'new folders' in PERL from a drop down menu.
4
17,532
thread by: news.verizon.net | last post Jul 19 '05 by: Jim Gibson
I'm working through the examples in Jeffrey E. F. Friedl's book 'Mastering Regular Expressions, 2nd Ed.'. I'm trying to work the example at the top of p. 53, but I'm attempting it in a command prompt window (I'm using Windows 2000 pro). I enter: perl -p -i -e 's/sysread/read/g' substitute.txt I get this error message: "Can't do inplace...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.