To check a word is number or not


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting To check a word is number or not
# 1  
Old 04-27-2010
To check a word is number or not

Hi,

I have one file like 00123. And this file name is generated as a sequence.

So how can I confirm the generated file name is a number, not a special character or alphabets.

Can anybody help me out.

Thanks in advance.
# 2  
Old 04-27-2010
Hi,

try this,

Code:
#!/usr/bin/perl

$filename = "00123";

if ( $filename =~ /\b\d{1,5}\b/ ) { print "Numeric \n";}
else { print "Not numeric \n"'; }

# 3  
Old 04-27-2010
A shell way. Test by removing all numbers and see what's left.

Code:
if [ -z "`echo ${filename} | tr -d '0123456789'`" ]
then
        echo "${filename} is numeric"
fi

# 4  
Old 04-27-2010
If you would have consulted our archives and searched for "test numbers" you might have found the following thread:

Check if the input is number or text?

You might also have searched for "check numbers" and you would have found this thread:

How to validate input parameters?

Which contains an in-depth discussion about exactly your problem in specific and input validation in general.

You could also search our archives for "input validation" and get 4 pages of hits in thread display - i haven't checked them all for relevancy, but i remember at least several of them as being related to your problem.

Google is your friend and the archive of this website is your ally. You generally get answers faster by searching the answers already given to others with similar (or even identical) problems as you then put the umpteenth thread dealing with a commonday problem here and expect people who have answered the same question already dozens of times to give you a genuine and elaborate answer.

I hope this helps.

bakunin
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

UNIX script to check word count of each word in file

I am trying to figure out to find word count of each word from my file sample file hi how are you hi are you ok sample out put hi 1 how 1 are 1 you 1 hi 1 are 1 you 1 ok 1 wc -l filename is not helping , i think we will have to split the lines and count and then print and also... (4 Replies)
Discussion started by: mirwasim
4 Replies

2. Shell Programming and Scripting

Find a word and increment the number in the word & save into new files

Hi All, I am looking for a perl/awk/sed command to auto-increment the numbers line in file, P1.tcl: run_build_model sparc_ifu_dec run_drc set_faults -model path_delay -atpg_effectiveness -fault_coverage add_delay_paths P1 set_atpg -abort_limit 1000 run_atpg -ndetects 1000 I would like... (6 Replies)
Discussion started by: jypark22
6 Replies

3. Shell Programming and Scripting

Print only word not number

Hi, Need to extract only words not numbers #cat test.txt 123456 oracle web 56789 s21adm Required output #grep <options> test.txt oracle web s21adm Note, in between integer "s21adm" is required but not with full integer "123456" and "56789" (6 Replies)
Discussion started by: ksgnathan
6 Replies

4. Shell Programming and Scripting

Help with sort word followed by exponential number and numeric number at the same time

Input file: ID_34 2E-69 2324 ID_1 0E0 3254 ID_1 0E0 5434 ID_5 0E0 436 ID_1 1E-14 2524 ID_1 5E-52 46437 ID_3 65E-20 45467 ID_1 0E0 6578 ... Desired output file: ID_1 0E0 6578 ID_1 0E0 5434 ID_1 0E0 3254 ID_1 5E-52 46437 ID_1 1E-14 2524 ID_3 65E-20 45467 (5 Replies)
Discussion started by: cpp_beginner
5 Replies

5. UNIX for Dummies Questions & Answers

Word check within file

I am trying to see if a word exists within the file, then do command accordingly. cmd=$(grep -ci "$word" $file) if ; then echo "Word exists" else echo "Word does not exist." fiI try this code, but it keeps giving me syntax errors for the cmd line. Am I doing something... (3 Replies)
Discussion started by: itech4814
3 Replies

6. Homework & Coursework Questions

Word Search: Can you please check if this is correct. thanks!

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: Im currently doing a search command.. for example , when i typed a certain word , lets say "DOG".. all... (7 Replies)
Discussion started by: jenimesh19
7 Replies

7. Shell Programming and Scripting

WORD SEARCH - CHECK IF CORRECT!

Im currently working on a Script using PICO editor, the scripts purpose is : When you typed a certain "word" and press enter, All directories, Script, and any other files that contain that "word" will be displayed.. for example i typed "DOG".. all executable script, Directories, and any other... (3 Replies)
Discussion started by: jenimesh19
3 Replies

8. Programming

C++ > check if a file contains a word...

I wanna check if a file located in /home/user/.config/Home/unkilled.txt contains the word 'permitted'... I am a beginner in C++. This is my code: 1. #include <stdio.h> 2. #include <cerrno> 3. #include <sys/stat.h> 4. #include <fstream> 5. #include <sys/types.h> 6. #include... (1 Reply)
Discussion started by: hakermania
1 Replies

9. Shell Programming and Scripting

perl (word by word check if a hash key)

Hi, Now i work in a code that 1-get data stored in the database in the form of hash table with a key field which is the " Name" 2-in the same time i open a txt file and loop through it word by word 3- which i have a problem in is that : I need to loop word by word and check if it is a... (0 Replies)
Discussion started by: eng_shimaa
0 Replies

10. Shell Programming and Scripting

multiple word check

Hi left value is 1.34 and i want it to compare against 4 right values 2.01, 3.01. 4.09 ,1.11 . This is not numerical comparion. I need for text. I get syntax errors ... value =1.34 --> value will be passed dynamically.. if --> is this correct ? {} else {}fi (2 Replies)
Discussion started by: PrasannaKS
2 Replies
Login or Register to Ask a Question