IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Data-Item in COBOL


IBM Mainframe Forums -> COBOL Programming
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
gyana

New User


Joined: 09 Feb 2006
Posts: 4

PostPosted: Thu Jul 06, 2006 3:14 pm
Reply with quote

I want to know do we have any data items or literals which defines all the valid character for COBOL. For e.g. NUMERIC means any numerals and ALPHABETIC means all alphabetic characters and some special characters. Similary do we have something that defines all the valid characters accepted by COBOL?
Back to top
View user's profile Send private message
vijayanand_cse

New User


Joined: 12 Jun 2006
Posts: 13
Location: Chennai

PostPosted: Thu Jul 27, 2006 3:47 pm
Reply with quote

Hi,

You can compare your data-item as follows:

Data-Item is NUMERIC
ALPHABETIC
ALPHABETIC-LOWER
ALPHABETIC-UPPER
User-defined class name

Example:
In Input-data IS ALPHABETIC-LOWER
THEN
MOVE FUNCTION UPPER(Input-data) to Input-data
END-IF.


The UserDefinedClassName is name that a programmer can assign to a set of characters. The programmer must use the CLASS clause of the SPECIAL-NAMES paragraph, of the CONFIGURATION SECTION, in the ENVIRONMENT DIVISION, to assign a class name to a set of characters.


Regards
Vijay
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> COBOL Programming

 


Similar Topics
Topic Forum Replies
No new posts How to save SYSLOG as text data via P... All Other Mainframe Topics 2
No new posts Store the data for fixed length COBOL Programming 1
No new posts Replace each space in cobol string wi... COBOL Programming 3
No new posts COBOL -Linkage Section-Case Sensitive COBOL Programming 1
No new posts COBOL ZOS Web Enablement Toolkit HTTP... COBOL Programming 0
Search our Forums:

Back to Top