Skip to main content

Convert a string to Upper case

Comments

1 comment

  • David Paras

    In the data mapper, under string function there is a translate option. It can translate lower case to upper or vice versa.

     

    For example, if you would like to convert AdePtiA into all upper case, then the rule would be

    translate( 'AdePtiA' , 'abcdefghijklmnopqrstuvwxyz' , 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' )

    0

Article is closed for comments.