The UNIX and Linux Forums  


Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com



Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
check the given string is numeric or not. knowledge_gain High Level Programming 11 02-03-2009 11:25 AM
Perl code to differentiate numeric and non-numeric input Raynon Shell Programming and Scripting 11 08-04-2007 11:32 AM
Problem comparing 2 files with lot of data rafisha Shell Programming and Scripting 4 07-25-2007 08:56 PM
With Regex Spliting the string into Alphanumeric and Numeric part ozgurgul Shell Programming and Scripting 1 06-30-2007 10:52 AM
Convert string to numeric kflee2000 Shell Programming and Scripting 3 11-19-2003 11:21 PM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish Bulgarian Greek Powered by Powered by Google
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 01-28-2008
naren_0101bits naren_0101bits is offline
Registered User
  
 

Join Date: Sep 2007
Posts: 9
problem in comparing numeric with string

Hi all,

I am having a problem in comparing numeric value with string.
I have a variable in my script which gets the value dynamically. It can be a numeric value or a string. [ FILE_COUNT=5 (or) FILE_COUNT="VARIABLE" ]

I have to do separate task based on its value numeric or sting variable VARIABLE.

I grep FILE_COUNT and obtained the value. But its giving error when i did either
if [ $FILE_COUNT = "VARIABLE" ]
or
if [ $FILE_COUNT -eq "VARIABLE" ]
as it is not two numeric or two string comparisons.

I tried using test also likewise
if [ test $FILE_COUNT = "VARIABLE" ] but invain

I am thinking of using "typeset -i <variable>" concept but it assigns 0 if it is a string and the dynamic value that i receive can also be 0.

So, can you please give me some light in to this issue to let me move forward in this.

Thanks in advance,

Naren
  #2 (permalink)  
Old 01-28-2008
Yogesh Sawant's Avatar
Yogesh Sawant Yogesh Sawant is offline Forum Staff  
Part Time Moderator and Full Time Dad
  
 

Join Date: Sep 2006
Location: Rossem, Tazenda
Posts: 1,086
does this help:
Code:
if [ $FILE_COUNT == "VARIABLE" ] ; then
  echo "is VARIABLE"
else
  echo "is a number"
fi

  #3 (permalink)  
Old 01-28-2008
naren_0101bits naren_0101bits is offline
Registered User
  
 

Join Date: Sep 2007
Posts: 9
It is still showing the error message using the == operator
expr: 0402-050 Syntax error.
  #4 (permalink)  
Old 01-28-2008
jaduks's Avatar
jaduks jaduks is offline
Registered User
  
 

Join Date: Aug 2007
Location: Assam,India
Posts: 167
The one that yogesh is mentioning above should work for both numeric and string comparison. A different look of the same.


Code:
$ VAR=25
$ [ $VAR == "25" ] && echo "Y" || echo "N"
Y

$ VAR=25A
$ [ $VAR == "25A" ] && echo "Y" || echo "N"
Y

  #5 (permalink)  
Old 01-28-2008
naren_0101bits naren_0101bits is offline
Registered User
  
 

Join Date: Sep 2007
Posts: 9
You people are right. But what i am trying is not numeric to numeric or string to string comparison. But it is like
$ VAR=25
And i want to check if $VAR is "25A" or not. Likewise
$ if [ $VAR == "25A" ] { .........} else { ..........}

And this is giving error.
  #6 (permalink)  
Old 01-28-2008
KevinADC KevinADC is offline Forum Advisor  
Registered User
  
 

Join Date: Jan 2008
Posts: 731
maybe something like:

if [[ $VAR == 25* ]]
Closed Thread

Bookmarks

Tags
shell script

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT -4. The time now is 02:47 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language Translations Powered by .
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0