IBM Z and LinuxONE IBM Z

IBM Z

The enterprise platform for mission-critical applications brings next-level data privacy, security, and resiliency to your hybrid multicloud.


#Servers
#IBMZ
#Enterpriseserver
 View Only
  • 1.  z/OS ICEMAN V3R1 - Case Sensitive string search

    Posted 12/02/25 10:19 AM

    Hi,

    I am using the following to find a case sensitive string with no success:

    //JS010    EXEC PGM=ICEMAN,
    //             PARM='MOSIZE=MAX'
    //IDIOFF   DD  DUMMY
    //SYSOUT   DD  SYSOUT=*
    //SYMNOUT  DD  SYSOUT=*
    //SORTIN   DD  DSN=TSTBT.OS.&ENV..QAFAPA30.CLUSTER,
    //             DISP=SHR
    //SORTOUT  DD  SYSOUT=*
    //SYSIN    DD  *
      RECORD TYPE=V
      INCLUDE COND=(5,93,SS,RE,C'Funding')
      OPTION COPY
    /*

    The terminal emulation is set to use code page 1047.

    Thanks for any assistance with this matter.



    ------------------------------
    Girish Sajja
    ------------------------------


  • 2.  RE: z/OS ICEMAN V3R1 - Case Sensitive string search

    Posted 01/20/26 08:04 AM

    Hi,

    In your case, you don't need the RE (Regular expressions) comparison operators. Prefer EQ (Equal to)



    ------------------------------
    Guillaume VENTRE (he/him)
    Senior Technical Expert | IBM Z Champion
    SBS Software
    Paris La Défense Cedex, France
    ------------------------------



  • 3.  RE: z/OS ICEMAN V3R1 - Case Sensitive string search

    Posted 01/20/26 02:02 PM

    Hi,

    That worked!

    I guess the last time I tried it there was no records with the lower-case letters.

    Thank you very much.



    ------------------------------
    Girish Sajja
    ------------------------------