hello,
I am more of an SQL person - so what I am trying to say, I am not sure how to say in Perl. I am sure it is some sort of regular expression. Maybe YOU can help me!
I would like to say,
if ($ZipPlus4 STARTS WITH 29626) then increment n.
any hints?
thank you!
Hello! I am new to Perl and have been using it intermittently in a QA role. Mainly for parsing & testing tab delimited files.
I am reading through the Learning Perl book & working through Chapter 5 right now which is a chapter on hashes.
I am not sure I'm understanding a Hash on the large...
Hello, I am new to perl and working my way through the Learning Perl book. I'm only on page 37, so bear with me!!!
I want to take STDIN and break it into letters. It's a decoder program. Like, for example, if someone types in: LC8Q4 CBDSN XQRHD NKJXB HR into STDIN ... it will come out as BECAR...
hello! I have a story problem for you. I have a tab-delimited file. The 2nd field is the "state" field, and I want to pull out of this file, and write to a NEW file, only the rows that have Wisconsin as their state. 'WI' I believe I need to use "split" but not sure how. This is how far I've...
hello,
does perl allow/understand when i use AWK inside of a system command? I can't understand why this isn't working:
$pid=`ps -ef | grep java | egrep -v grep | awk '{print $2}'`;
print "$pid";
when i type: ps -ef | grep java | egrep -v grep | awk '{print $2}'
at the command prompt itself...
hello,
i would like to load a system command into a variable. The system command is: system "ps -ef | grep java3 | egrep -v grep | awk '{print $2}'";
I'm guessing the way I would do this is:
my $proc = system "ps -ef | grep java3 | egrep -v grep | awk '{print $2}'";
But i have a question...
Hello,
I am getting incorrect results and I am a newbie - so if you have any ideas, I would greatly appreciate the help!
here is what I have:
#!/usr/local/bin/perl
for (<suspec*.data>)
{ open(INFO, $_) or die "Can't open input file: $!";
while (<INFO>){
chomp;
my $small_string = substr...
Hello!
I am using this command in PERL:
system "ps -ef | grep 'java command'";
But how do i get the process ID off of this so I can kill the process? Also, I want to be very sure I am killing the correct process as well.
~p4e
I am pretty new to regular expressions. I have a book and I am reading fervently, but unable to get this to work. I'd like to increment n anytime my variable has the value 'grand' in it.
First question: Is this case sensitive? If so - how do I make it NOT case sensitive?
I am trying to match...
Hello, I would like to use the open() function to open several files. I tried doing it this way:
$file = 'test*.file'; # Name the file
open(INFO, $file) or die "Can't open input file: $!"; # Open the file
But this isn't working.
The files are named:
test.file, test1.file...
Hello,
Well I have tried a million variations on this! HA! Oh I can't wait until I get through this learning curve for perl. It seems even the smallest stuff is tripping me up at this point.
Anyhow, wanted to run it past you in the forums to see if you can straighten things out in my head...
Hello, First of all, I open a file in Perl and then i use substr to pull out just a piece of each row in my flat file (which is fixed length). Now, I would like to get a count of that substr - that actually has values, that isn't empty or blank.
So I'm not sure which function to use. Here is...
Hello, I would like to run a count of rows on a flat file. From a unix prompt, i would just type wc -l, right? but I want to do this within a perl script.
So - how do i get this to execute? I am a brand new perl user. I tried this:
$line = "wc -l test.txt";
print "$line\n";
But that literally...
Hello! I am a brand new, novice python user. I'd like to use python to search through some very large flat files that i have. These files will eventually be loaded into a database. The files are fixed width - and i'd like to search each row inbetween a particular range (like between characters...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.