Turn upcase the first letter of a word

I am making a translator and I need the answer to have the first letter capitalized, how can I do it? pls help

JOIN, SEGMENT, UPCASE three type blocks needed.

1 Like

Another approach:

Text split the text at '' (empty text) into a list variable.

Replace item 1 of the list with upcase of itself.

Join the list with separator '' (empty text) to get the capitalized results.

A simple example:
ToUpper.aia (3.1 KB)

1 Like

Or this:

image

2 Likes

image

4 Likes

4 Likes