IBM webMethods Hybrid Integration

IBM webMethods Hybrid Integration

Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.



#Automation


#Applicationintegration
#webMethods
#Integration
 View Only
  • 1.  Regular Expression Help

    Posted 12/06/06 07:57 PM

    I am trying to filter out all files beginning with letter Z for e.g. Z12345 or Z12E34and for that
    I use regex [/^Z/], however it also filters out all the files that contains letter Z … like A12Z34 or 12345Z which i dont want. what could be the correct regular expression to filter out only fils beginning with letter Z?


    #webMethods
    #Integration-Server-and-ESB
    #Flow-and-Java-services


  • 2.  RE: Regular Expression Help

    Posted 12/06/06 08:05 PM

    Try this:

    /Z\w/

    This means words beginning with the letter ‘Z’.


    #Integration-Server-and-ESB
    #webMethods
    #Flow-and-Java-services


  • 3.  RE: Regular Expression Help

    Posted 12/06/06 08:20 PM

    no it doesn’t work…it matches almost all characters even those that do not start with Z


    #Integration-Server-and-ESB
    #webMethods
    #Flow-and-Java-services


  • 4.  RE: Regular Expression Help

    Posted 12/06/06 09:00 PM


  • 5.  RE: Regular Expression Help

    Posted 12/06/06 09:07 PM