How can I convert a string to Upper case in the mapper?
Convert a string to Upper case
Have more questions? Submit a request
-
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' )
Article is closed for comments.
1 Comments