Capital letters at the beginning of each letter

Hello everyone, after searching the community I decided to make this topic, it’s about the problem of making capital letters at the beginning of the letter example like this (Can This Be Done?)

You could make a procedure to do this:

1 Like

i like this, thanks for helping

And onemore easy way is, just by using small extension called #String functions credit to @Pythony
image

Documentation

blocks (65)

ChangeCase
Changes the case of a string - ‘text’ according to the case given - ‘toCase’.
The valid cases are - upper case , lower case , sentence case , title case and toggle case .
If you enter a wrong case, an error will occur.
Example:

  • text = hello everybody | toCase = upper case returns HELLO EVERYBODY .
  • text = HELLO EVERYBODY | toCase = lower case returns hello everybody .
  • text = hello everybody. how are you? | toCase = sentence case returns Hello everybody. How are you? .
  • text = hello everybody | toCase = title case returns Hello Everybody .
  • text = hello everybody | toCase = toggle case returns randomly capitalized and lowered string like heLlO EveRyboDY
2 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.