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.


#TechXchangePresenter
 View Only
Expand all | Collapse all

java flow service to convert first letter of each word in a sentence into capital letter

  • 1.  java flow service to convert first letter of each word in a sentence into capital letter

    Posted Wed March 07, 2018 02:16 AM

    java flow service to convert first letter of each word in a sentence into capital letter


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


  • 2.  RE: java flow service to convert first letter of each word in a sentence into capital letter

    Posted Wed March 07, 2018 09:04 AM

    Hi Naveen,

    Is there any reason to use Java program?

    Refer the below line/function, you may get some idea…


    String s1 = name.substring(0, 1).toUpperCase() + name.substring(1);


    Refer the following link: How to capitalize the first letter of a String in Java? - Stack Overflow

    Regards,
    krish


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