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

String in Cobol


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

New User


Joined: 22 Jun 2007
Posts: 85
Location: bangalore

PostPosted: Sun Jun 26, 2016 11:28 am
Reply with quote

Hello
I have reqmt like move only numeric part to a variable from a string


newyork405567
australia1234566
india908766
sri lanka8900000

so for first string it will extract only 405567 and moved to variable,same for other strings.
Back to top
View user's profile Send private message
PeterHolland

Global Moderator


Joined: 27 Oct 2009
Posts: 2481
Location: Netherlands, Amstelveen

PostPosted: Sun Jun 26, 2016 1:54 pm
Reply with quote

And how did you do it?
Back to top
View user's profile Send private message
Rohit Umarjikar

Global Moderator


Joined: 21 Sep 2010
Posts: 3053
Location: NYC,USA

PostPosted: Sun Jun 26, 2016 2:55 pm
Reply with quote

How about checking each byte value against 0-9 and move if true else skip till end of field or space? Also observed that the subject line is contradicting what you want.
Back to top
View user's profile Send private message
Nic Clouston

Global Moderator


Joined: 10 May 2007
Posts: 2455
Location: Hampshire, UK

PostPosted: Sun Jun 26, 2016 3:26 pm
Reply with quote

Will there be any numerics within the "text" part of the string? If so, are these to be extracted as well? If they exist and are not to be extracted then Rohit's solution would not work. Surely you can work out the logic to find the first and last digit so that you can then extract the numerics? As Peter Holland wrote - what have you tried?
Back to top
View user's profile Send private message
prino

Senior Member


Joined: 07 Feb 2009
Posts: 1306
Location: Vilnius, Lithuania

PostPosted: Sun Jun 26, 2016 9:11 pm
Reply with quote

Nic Clouston wrote:
As Peter Holland wrote - what have you tried?

"I tried posting here, as doing something myself might be putting to much stress on my grey cell - being alone is already bad enough!"
Back to top
View user's profile Send private message
chandan.inst

Active User


Joined: 03 Nov 2005
Posts: 275
Location: Mumbai

PostPosted: Mon Jun 27, 2016 9:27 am
Reply with quote

Hi,

If there is not going to be any numeric in text part, then u can check at what instance of length you are getting first numeric and then use reference modification

Thanks ,
Chandan
Back to top
View user's profile Send private message
muralikrishnan_new

New User


Joined: 02 Jun 2013
Posts: 15
Location: India

PostPosted: Mon Jun 27, 2016 3:17 pm
Reply with quote

Hi Jan,
Please try using the function NUMVAL-C.
Code:

            MOVE FUNCTION(NUMVAL-C(WS-STR)) TO WS-STR1.
         


Thanks,
Murali
Back to top
View user's profile Send private message
Nic Clouston

Global Moderator


Joined: 10 May 2007
Posts: 2455
Location: Hampshire, UK

PostPosted: Mon Jun 27, 2016 9:23 pm
Reply with quote

Murali

How is that going to drop the alpha characters? Numval-c works on numeric data with a possible currency sign and editing characters.
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 Replace each space in cobol string wi... COBOL Programming 3
No new posts PARSE Syntax for not fix length word ... JCL & VSAM 7
No new posts COBOL -Linkage Section-Case Sensitive COBOL Programming 1
No new posts COBOL ZOS Web Enablement Toolkit HTTP... COBOL Programming 0
No new posts Sortjoin and Search for a String and ... DFSORT/ICETOOL 1
Search our Forums:

Back to Top