Hi I have a Question:
What is the best/simplest way to capitalize the first letter in a string
Solved! Go to Solution.
alright, after about one hour trial and error I found a solution:
concat(first(toupper('susanne')),substring('susanne',1,sub(length('susanne'),1)))
If anyone has an easyer solution I would much appreciate it 🙂
alright, after about one hour trial and error I found a solution:
concat(first(toupper('susanne')),substring('susanne',1,sub(length('susanne'),1)))
If anyone has an easyer solution I would much appreciate it 🙂
There are different ways to make it :
if you want to make first letter of a word to Capitalized then you can use Proper.
ex : Proper("umakanta swain") output : Umakanta Swain
if you want to Capitalize only first character of the string/sentence then
ex: mystring = what is your name umakanta ? Left(mystring,1) & Right(mystring, Len(mystring)-1)
output : What is your name umakanta ?
Join digitally, March 2–4, 2021 to explore new tech that's ready to implement. Experience the keynote in mixed reality through AltspaceVR!
User | Count |
---|---|
80 | |
55 | |
55 | |
43 | |
39 |
User | Count |
---|---|
84 | |
81 | |
76 | |
63 | |
42 |