The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

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
add carriage return at end of file HAA Shell Programming and Scripting 2 11-20-2007 11:58 AM
To remove carriage return between the line shash UNIX for Dummies Questions & Answers 5 07-31-2007 12:12 PM
Carriage Return at end of file bd_joy Shell Programming and Scripting 14 10-20-2006 01:20 PM
How to delete carriage return in SED stevefox Shell Programming and Scripting 3 12-23-2005 06:03 AM
Dont want carriage return videsh77 Shell Programming and Scripting 3 12-16-2004 09:26 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 12-15-2003
gio123bg gio123bg is offline
Registered User
  
 

Join Date: Nov 2003
Posts: 15
Angry Capture carriage return.

I try to test the carriage return in a variable.
$ LENGTH=`expr $VARIABLE : ".*"` will return the length of the variable. But this doesn't work if $VARIABLE has zero length.

Any help will be well appreciated.
Thanks in advance.

Giovanni
  #2 (permalink)  
Old 12-15-2003
jayakhanna jayakhanna is offline
Registered User
  
 

Join Date: Dec 2003
Location: India
Posts: 50
# VAR="adfadf"; LENGTH=`expr "$VAR" : '.*'`; echo $LENGTH

I doubt whether your syntax is correct, just use the above it will work correctly


If you want to get 0 for null string put VAR=""

Cheers
  #3 (permalink)  
Old 12-15-2003
jayakhanna jayakhanna is offline
Registered User
  
 

Join Date: Dec 2003
Location: India
Posts: 50
You can try this way also if you want as a single command to be executed one at a time

# export VAR="adafadfadf"
# export LENGTH=`expr "$VAR" : '.*'`
# echo $LENGTH
10
# export VAR=""
# export LENGTH=`expr "$VAR" : '.*'`
# echo $LENGTH
0
#

Regards
  #4 (permalink)  
Old 12-15-2003
google's Avatar
google google is offline Forum Advisor  
Moderator
  
 

Join Date: Jul 2002
Location: Atlanta
Posts: 740
Also see the syntax

LENGTH=${#VARIABLE}
  #5 (permalink)  
Old 12-15-2003
oombera's Avatar
oombera oombera is offline Forum Advisor  
Registered User
  
 

Join Date: Aug 2002
Location: Cleveland, OH
Posts: 804
You could also use awk:

var="adfadf"
echo $var | awk '{print length($0)}
Closed Thread

Bookmarks

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 05:08 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