How to do Camel Casing in Appian any function Available?

expected output : textShouldBeInCamelCase

  Discussion posts and replies are publicly visible

Parents Reply
  • This example ^ needs further adjustment to make the first letter lower case:

    a!localVariables(
      local!text: "Text shOUld be in camel Case",
      local!proper: stripwith(proper(local!text), " "),
      concat(
        lower(left(local!proper,1)),
        right(local!proper,len(local!proper)-1)
      )
    )

    (It won't let me Quote the post when there is only a code snippet and no other text apparently..)

Children