Good day all!
I'm trying to figure out how to capitalize the first character in a string after a number and period.
For example:
1. hello (Should be = 1. Hello)
...
...
10. visual (Should be = 10. Visual)
I wrote down some pseudocode, but I'm not entirely sure if I'm heading in the correct direction
[pseudocode]
If 3rd character in string = " " then
Convert 4th character to UCase
Elseif 4th character in string = " " then
Convert 5th character to UCase
End If
[/pseudocode]
Is this close to being correct?
If so, how would I actually go about converting that single character to upper case?
Thanks in advance!
________________________________________
Buddha. Dharma. Sangha.
I'm trying to figure out how to capitalize the first character in a string after a number and period.
For example:
1. hello (Should be = 1. Hello)
...
...
10. visual (Should be = 10. Visual)
I wrote down some pseudocode, but I'm not entirely sure if I'm heading in the correct direction
[pseudocode]
If 3rd character in string = " " then
Convert 4th character to UCase
Elseif 4th character in string = " " then
Convert 5th character to UCase
End If
[/pseudocode]
Is this close to being correct?
If so, how would I actually go about converting that single character to upper case?
Thanks in advance!
________________________________________
