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

Finding a string containing "&" in an edit mac


IBM Mainframe Forums -> TSO/ISPF
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
Josh Keller

New User


Joined: 08 Oct 2007
Posts: 36
Location: Columbia, SC

PostPosted: Tue Jun 24, 2008 8:18 pm
Reply with quote

I'm writting an edit macro in rexx to replace several strings in JCL. When the macro attempts to find a JCL symbolic &CYCID for example, it's interpreting the string as a embedded pattern, so the string is not found.


Question: How can the edit macro change a string if it contains a "&" ?

Example:
STR = "&CYCID"
"ISREDIT FIND '"STR"' NEXT"

This expample returns an error reporting that STR is null.




My backup plan is to scan through the JCL and use the POS command to find the strings in question. But this has got me thinking if there is a way to do it using the ISREDIT commands.

Thanks,
Josh
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


Joined: 20 Oct 2006
Posts: 6966
Location: porcelain throne

PostPosted: Tue Jun 24, 2008 8:52 pm
Reply with quote

dealing with &, I usually start my macro by changing all & to :.

, if I know that there will be no colons <:>. or some other char.

changing to an x'??' means that you can not use the 1st char unless it is a printable.

if I am only looking for one char, then I will use the x'??' format (for example x'ff').

in your case you are looking for &?????, so make it icon_confused.gif???? or #?????, by a CHG ALL '&'' ':'. Then at the end of your macro, change all : to &.
Back to top
View user's profile Send private message
Josh Keller

New User


Joined: 08 Oct 2007
Posts: 36
Location: Columbia, SC

PostPosted: Tue Jun 24, 2008 9:33 pm
Reply with quote

I didn't think about hex... so your post gave me an idea.

I used the C2X function and converted my strings to hex, then did a FIND X"'"HEXSTR"'" It worked like a champ.


Thanks,

Josh
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 -> TSO/ISPF

 


Similar Topics
Topic Forum Replies
No new posts Finding and researching jobs All Other Mainframe Topics 0
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 Sortjoin and Search for a String and ... DFSORT/ICETOOL 1
No new posts VB to FB - Finding LRECL SYNCSORT 4
Search our Forums:

Back to Top