If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > Unix Shell Scripts > String Length

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 06-08-04, 17:39
Bob4480 Bob4480 is offline
Registered User
 
Join Date: Feb 2004
Location: Los Angeles, CA
Posts: 28
String Length

Is there a simple way to determine the length of a Variable in a shell?

I am using Korn in the following example. The code can be a 1 or 2 digit A/N code but must be less than 3 digits A/N:

#!/bin/ksh

echo "Enter Code for Product: \c"
read PC

if [ -z "$PC" ]
then
echo "No code entered..."
exit 1
elif [ Here is where I want to check that $PC is less than 3 digits A/N ]
then
Do something based on whether it is 1 or 2 digits.
else # It's 3 digits or more
exit 2
fi
Reply With Quote
  #2 (permalink)  
Old 06-08-04, 17:50
LKBrwn_DBA LKBrwn_DBA is offline
Registered User
 
Join Date: Jun 2003
Location: West Palm Beach, FL
Posts: 2,456
Lightbulb

You could try this:
Code:
   len=$(echo $PC|awk '{print length;}')
   if [ len -lt 3 ]
   then
     ...etc...
__________________
The person who says it can't be done should not interrupt the person doing it. -- Chinese proverb
Reply With Quote
  #3 (permalink)  
Old 06-08-04, 18:31
Bob4480 Bob4480 is offline
Registered User
 
Join Date: Feb 2004
Location: Los Angeles, CA
Posts: 28
Works great, Thank you =)
Reply With Quote
  #4 (permalink)  
Old 06-08-04, 18:38
vgersh99 vgersh99 is offline
Registered User
 
Join Date: Apr 2004
Location: Boston, MA
Posts: 325
if (( ${#len} < 3 ))
then
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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 Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On