Oct 16, 2006 #1 Michael42 Programmer Oct 8, 2001 1,454 US Hello, In a Bourne shell script running on Solaris 8 I have a string variable (MYSTRING="A,B,C,D,") that always ends in a comma. How can I remove this last character from my string variable? Thanks, Michael42
Hello, In a Bourne shell script running on Solaris 8 I have a string variable (MYSTRING="A,B,C,D,") that always ends in a comma. How can I remove this last character from my string variable? Thanks, Michael42
Oct 16, 2006 1 #2 PHV MIS Nov 8, 2002 53,708 FR NEWSTRING=`expr "$MYSTRING" : '\(.*\),'` Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886 Upvote 0 Downvote
NEWSTRING=`expr "$MYSTRING" : '\(.*\),'` Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
Oct 16, 2006 Thread starter #3 Michael42 Programmer Oct 8, 2001 1,454 US PHV, Thanks, that works perfect! -Michael42 Upvote 0 Downvote