Hi all,
In my workflow I need to capitalize the first letter of only the first word in a string. For example I want to convert "test test string" to "Test test string".
If I use the inline function fn-ToTitleCase it will capitalize every first letter of every word in the string.
How could I best go about doing this?
I am thinking about using a regular expression action. To either get all words based on the pattern s and then loop through all the words, converting only the first word ToTitleCase and merge all words into a single string. Or maybe getting the first character of the string with a regex such as ^[a-z]{1}, then putting this character ToTitleCase, getting the substring and merging these again...
There must be an easier way! Thanks!



