05-07-2019 08:06 PM
How can we convert the string in Camel Case in mapper ?
05-07-2019 09:41 PM
In the expression language from the May 2019 (4.17) release you can.
See https://docs-snaplogic.atlassian.net/wiki/spaces/SD/pages/1439357/String+Functions+and+Properties#St...
05-13-2019 02:19 AM
Hi cstwart,
I found this documentation but looks like its not incorporated in mapper as we get “method not found error”.
05-13-2019 04:19 AM
Hi cstwart,
In order to use the new features you should probably upgrade your snaplex to the newest version.
05-16-2019 12:59 PM
Hi cstwart,
You could also use the following expression: “test upper case”.replace(/\b\w/g, chr => chr.toUpperCase())