a simple perl


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers a simple perl
# 1  
Old 04-16-2002
Data a simple perl

not sure if i should post here or "shell programming"

anyway, i am just start learning perl.

1 #!/usr/local/bin/perl
2
3 $test1="Iam";
4 if ($test1=="anything")
5 {
6 print "show me\n";
7 }
when i run the program, it display "show me" all the time regardless the if condition. what is going on here? can any help me?

thks

Gusla
# 2  
Old 04-17-2002
Solution

Hi,

you may only use the operator "==" for numerical matches. In this case, use "eq" instead, as you are trying to match strings.

Example:
Code:
#!/usr/local/bin/perl

$test1="Iam";

if ($test1 eq "anything") {
        print "show me\n";
} else {
        print "Not matching.\n";
}

This prints "Not matching."

HTH,
Lexx

added code tags for readability --oombera

Last edited by oombera; 02-18-2004 at 12:37 PM..
Lexx
# 3  
Old 04-17-2002
Tools cool

thks Lexx, u r coool
# 4  
Old 04-17-2002
You're welcome Smilie

Anyway, if you just started learning Perl, you might find this book interesting: http://www.oreilly.com/catalog/lperl3/

HTH,
Lexx

--
:wq!
Lexx
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Simple Perl question

Hello, I'm completely new to Perl and I'm just looking for a quick answer to some code I'm trying to come up with. I'm trying to access a website, part of the URL I want the user to be able to define via standard input. As you can see below I'm still trying to get the syntax. ... (2 Replies)
Discussion started by: wxornot
2 Replies

2. Shell Programming and Scripting

Can Help me in simple perl code

Hi all i want a program have input file .txt and process it then got output Ex: input: King Saud University say hi Mr.Ahmed Cena have a car perl is good ! Dr.john is good! output: KSU say hi Mr.AC have a car perl is good! Dr.John is good! so the process take the String has... (3 Replies)
Discussion started by: abdulelah252
3 Replies

3. Shell Programming and Scripting

Help making simple perl or bash script to create a simple matrix

Hello all! This is my first post and I'm very new to programming. I would like help creating a simple perl or bash script that I will be using in my work as a junior bioinformatician. Essentially, I would like to take a tab-delimted or .csv text with 3 columns and write them to a "3D" matrix: ... (16 Replies)
Discussion started by: torchij
16 Replies

4. Shell Programming and Scripting

Simple Perl error

Hello All, I'm trying to run a simple perl script and have the below error. Tried to google it but could not get a precise solution. Could you please help me out. Can't locate object method "are" via package "equal" (perhaps you forgot to load "equal"?) at ./equal.pl line 9, <STDIN> line 2. ... (3 Replies)
Discussion started by: lovesaikrishna
3 Replies

5. Shell Programming and Scripting

Simple Perl Topic

Hi, I am practicing a very simple perl programming, what i want to do is reverse the string what is wrong with the following Thanks $string = "abcdef"; @array = split(//, $string); $length =length @array for ( i=1;i< $length+1;i++) { print "$_\n"; } (5 Replies)
Discussion started by: ccp
5 Replies

6. Shell Programming and Scripting

Simple perl question

I am totally new to perl. I am modifying someone else's script. I have the following output: # ./some-perlscript A B C D E B - E, is generated through the print command that I put in the script. I want to remove A, it seems it is generated automatically by a custom OS it is querying when... (3 Replies)
Discussion started by: streetfighter2
3 Replies

7. Homework & Coursework Questions

Help with Simple Perl/Python Script

I have the following problem, which I need done in Perl/ or Python using Unix/linux filters... 1. You have a very large file, named 'ColCheckMe', tab-delmited, that you are asked to process. You are told that each line in 'ColCheckMe' has 7 columns, and that the values... (1 Reply)
Discussion started by: Swapnilsagarwal
1 Replies

8. Shell Programming and Scripting

perl 09-06-11 to 11062009, simple one line

Hi Guys, If want to change the string "09-06-11" to "11062009", i can only think use split to get the array@, the ,,, then restructure the sequence. Is there a simple line to do that? :o Thanks -----Post Update----- @file_e_tmp = split('-', $ARGV); $file_date_e =... (6 Replies)
Discussion started by: jimmy_y
6 Replies

9. Shell Programming and Scripting

simple socket programming in perl

hi i want to write simple socket program which will listen on socket . here is the code ## read msg on socket #! /usr/bin/perl use IO::Socket::INET; my $MySocket= IO::Socket::INET->new(LocalPort=>1234, Proto=>'udp') ; while ()... (2 Replies)
Discussion started by: zedex
2 Replies

10. Shell Programming and Scripting

simple perl script not working

why won't below work? I am trying to see a)sipfile has username of the system. b)it will read the sipfile and do a grep function against the /etc/passwd c)it will save that output to /tmp/result.. but my script is just hanging... #!/usr/bin/perl -w open(SIPFILE, "</tmp/sipfile") ... (4 Replies)
Discussion started by: hankooknara
4 Replies
Login or Register to Ask a Question