My goal is to invert uppercase letters with lowercase letters for the selected text.
I would also like to know if it is possible to capitalize the first letter of each word in the selected text.
Thank you
How to invert upper case letters and vice versa
-
- Posts: 9
- Joined: Thu Dec 27, 2018 1:48 am
Re: How to invert upper case letters and vice versa
This link has what I think you are after (if you want to do the code yourself):
https://lonewolfonline.net/delphi-strin ... onversion/
Inverting the case is the ToggleCase function, and the cap each letter is the TitleCase function.
Stan
https://lonewolfonline.net/delphi-strin ... onversion/
Inverting the case is the ToggleCase function, and the cap each letter is the TitleCase function.
Stan
Re: How to invert upper case letters and vice versa
Thank you all for the help.