MVSFORUMS.com Forum Index MVSFORUMS.com
A Community of and for MVS Professionals
 
 FAQFAQ   SearchSearch   Quick Manuals   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Change Upper case?

 
Post new topic   Reply to topic   printer-friendly view    MVSFORUMS.com Forum Index -> Application Programming
View previous topic :: View next topic  
Author Message
mls
Beginner


Joined: 10 Nov 2005
Posts: 9
Topics: 5

PostPosted: Mon Nov 24, 2008 3:21 am    Post subject: Change Upper case? Reply with quote

Hi,

I have names in upper case and I would like to change them to Name format eg.

Input
LASTNAME FIRSTNAME

Desired O/p
Lastname Firstname

I can't use function Lowercase as it will change all to lower case and I want to first alphabet to be in uppercase. pls let me know if there is any utility in COBOL for this.

Thanks!!
MLS
Back to top
View user's profile Send private message
dbzTHEdinosauer
Supermod


Joined: 20 Oct 2006
Posts: 1411
Topics: 26
Location: germany

PostPosted: Mon Nov 24, 2008 3:40 am    Post subject: Reply with quote

I would UNSTRING the two names into descrete fields;
use REFERENCE MODIFICATION with FUNCTION LOWERCASE
Code:

MOVE FUNCTION LOWERCASE(firstname-field(2:)) to firstname-field(2:)
MOVE FUNCTION LOWERCASE(lastname-field(2:)) to lastname-field(2:)

String lastname, space, and firstname delimited by spaces.
_________________
Dick Brenholtz
American living in Varel, Germany
Back to top
View user's profile Send private message
mls
Beginner


Joined: 10 Nov 2005
Posts: 9
Topics: 5

PostPosted: Mon Nov 24, 2008 6:36 am    Post subject: Reply with quote

Thanks a lot! It worked!
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic   printer-friendly view    MVSFORUMS.com Forum Index -> Application Programming All times are GMT - 5 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


MVSFORUMS
Powered by phpBB © 2001, 2005 phpBB Group