Can Help me in simple perl code


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Can Help me in simple perl code
# 1  
Old 05-19-2013
Code 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:
Code:
King Saud University say hi 
Mr.Ahmed Cena have a car 
perl is good !
Dr.john is good!

output:
Code:
KSU say hi
Mr.AC have a car 
perl is good!
Dr.John is good!

so the process take the String has a capital letter then process it to be short like above Ex..
but if have(Dr. Mr. Mrs. ....) Don't short it
please help me

Last edited by Scott; 05-19-2013 at 07:36 PM.. Reason: Code tags; formatting
# 2  
Old 05-19-2013
What have you tried?

Regards and welcome to the forums,
Alister
# 3  
Old 05-20-2013
yes , i tried
i want it by perl
# 4  
Old 05-20-2013
Do not post classroom or homework problems in the main forums. Homework and coursework questions can only be posted in this forum under special homework rules.

Please review the rules, which you agreed to when you registered, if you have not already done so.

More-than-likely, posting homework in the main forums has resulting in a forum infraction. If you did not post homework, please explain the company you work for and the nature of the problem you are working on.

If you did post homework in the main forums, please review the guidelines for posting homework and repost.

Thank You.

The UNIX and Linux Forums.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Convert bash to simple perl

please delete! (0 Replies)
Discussion started by: SkySmart
0 Replies

2. 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

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

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 in the... (1 Reply)
Discussion started by: Swapnilsagarwal
1 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. UNIX for Dummies Questions & Answers

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... (3 Replies)
Discussion started by: gusla
3 Replies
Login or Register to Ask a Question