alphabetical check


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting alphabetical check
# 1  
Old 06-12-2008
Bug alphabetical check

echo $TEMP|grep "[A-Z][a-z]"

I want to check TEMP is alphabetic or not in both the cases.but in above script i am getting 1($?) if TEMP is in pure lower case or pure upper case.i want to get 0($?) when TEMP would be alphabetic in either cases.pleaaaase help me out.....
# 2  
Old 06-12-2008
try this

Quote:
Originally Posted by arghya_owen
echo $TEMP|grep "[A-Z][a-z]"

I want to check TEMP is alphabetic or not in both the cases.but in above script i am getting 1($?) if TEMP is in pure lower case or pure upper case.i want to get 0($?) when TEMP would be alphabetic in either cases.pleaaaase help me out.....
Code:
echo $TEMP | grep "^[A-Z|a-z]*$"

# 3  
Old 06-12-2008
Quote:
Originally Posted by ynir
Code:
echo $TEMP | grep "^[A-Z|a-z]*$"

The use of the quantifier * is inappropriate as this pattern will match an empty string. Also, if you include the pipe in a character class like you do, that pattern will also match the character | in ab|kjlza. Better use this pattern:

^[A-Za-z]+$
# 4  
Old 06-13-2008
This will also help you,

Code:
echo $TEMP | grep ^[[:alpha:]][[:alpha:]]*$

Regards,
Chella
# 5  
Old 06-13-2008
Useless use of *

Quote:
Originally Posted by chella
This will also help you,

Code:
echo $TEMP | grep ^[[:alpha:]][[:alpha:]]*$

Regards,
Chella
Again, the second class [[:alpha:]] with its quantifier * (0 occurrence or more) is useless because if * means 0, the whole pattern will match one single alpha character from the first character class. If * means more, the whole pattern [[:alpha:]][[:alpha:]]* will match two alpha character or more. This could simply be written [[:alpha:]]+
Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Want to grep records in alphabetical order from a file and split into other files

Hi All, I have one file containing thousands of table names in single column. Now I want that file split into multiple files e.g one file containing table names starting from A, other containing all tables starting from B...and so on..till Z. I tried below but it did not work. for i in... (6 Replies)
Discussion started by: shekhar_4_u
6 Replies

2. Homework & Coursework Questions

Script program to count only alphabetical characters

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: Write a shell script program to count the ONLY the number of alphabetic characters stored in the shell variable... (1 Reply)
Discussion started by: kofine05
1 Replies

3. Shell Programming and Scripting

Sorting lines between patterns in alphabetical order

Hi, need help in sorting lines between strings "<section status = “ole-service”>" and "</section>" in alphabetical order, based on the text in red. Hoping for an AWK or SED solution. Thank you. ... <section status = “ole-service”>... <p service = "OOO">XZZ</p> <p service = "AAA">AAA... (3 Replies)
Discussion started by: pioavi
3 Replies

4. UNIX for Dummies Questions & Answers

Script to list applications in alphabetical order

I've looking over a script for work and I've had a problem with the script not listing the files in alphabetical order. To look up PIDs for apps, it would be beneficial to have them listed in that order. Here is what I've been reviewing. #!/usr/bin/perl $str = sprintf "%4s %-40s", "PID",... (7 Replies)
Discussion started by: whysolucky
7 Replies

5. Shell Programming and Scripting

[SHELL] Userlist alphabetical order

Hi everyone! I am new to the forum and have recently started working with Linux. Quick question, I want a user list in alphabetical order as the output of a shell script. Who can help me!? Thanks! From the netherlands ;) (5 Replies)
Discussion started by: dennisbest85
5 Replies

6. Homework & Coursework Questions

Alphabetical help.

1. The problem statement, all variables and given/known data: Find the first letter in alphabet from the input: Accept the input of a series of upper case alphabetic letters one at a time. The input ends with a 0. Find and display the first letter in alphabetic order. For example, input... (27 Replies)
Discussion started by: Ren_kun
27 Replies

7. UNIX for Dummies Questions & Answers

How can I list the file under a directory both in alphabetical and in reverse alphabetical order?

How can I list the file under current directory both in alphabetical and in reverse alphabetical order? (1 Reply)
Discussion started by: g.ashok
1 Replies

8. UNIX for Dummies Questions & Answers

how to use sed command with alphabetical and spaces?

If have a problem with this command: name="toe der" echo $name | sed -e 's/]//g' it will become: toeder how to make it back to original? (7 Replies)
Discussion started by: elenatec
7 Replies

9. Shell Programming and Scripting

alphabetical order with out using sort command

hai, how can i sort a file alphabetically without using sort command (6 Replies)
Discussion started by: rahul801
6 Replies

10. Shell Programming and Scripting

shell program for sorting strings in an alphabetical order

Hi, I trying to find the solution for writing the programming in unix by shell programming for sorting thr string in alphabetical order. I getting diffculty in that ,, so i want to find out the solution for that Please do needful Thanks Bhagyesh (1 Reply)
Discussion started by: bp_vanarse
1 Replies
Login or Register to Ask a Question